/* === Renk Değişkenleri === */
:root {
  --primary: #9a0020;
  --accent: #c99a00;
  --background: #faf7f5;
  --card-bg: #ffffff;
  --text: #222;
  --muted: #666;
  --info: #2196f3;
  --header-bg: #fff;
  --border-color: #e0e0e0;
  --shadow: rgba(0, 0, 0, 0.05);
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--text);
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 24px;
  color: var(--primary);
}

/* === HEADER === */
header {
  width: 100%;
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 4px var(--shadow);
  box-sizing: border-box;
}

.header-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 24px;
  box-sizing: border-box;

  /* FLEX yapı ama dikey */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.button-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  width: 100%; /* Sağa yaslamak için */
}

.button-row a {
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s;
}

.button-row a:hover {
  background-color: #7f0019;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo-wrapper img {
  height: 100px;
  object-fit: contain;
}

/* === HOŞGELDİN === */
.welcome-section {
  width: 100%;
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 50px 20px;
  box-sizing: border-box;
  margin-top: 40px;
}

.welcome-section .welcome-text {
  max-width: 1000px;
  margin: 0 auto 30px;
  text-align: center;
  color: var(--text);
}

.welcome-section .welcome-text h2 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 18px;
}

.welcome-section .welcome-text p {
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 15px;
}

.welcome-section .rød {
  color: var(--primary);
  font-weight: bold;
}

.search-form {
  background: var(--card-bg);
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px var(--shadow);
  border: 1px solid var(--border-color);
  text-align: center;
}

.search-form h3 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.search-form .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 16px;
}

.search-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.search-form select,
.search-form input[type="text"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 150px;
}

.search-form button {
  background-color: var(--primary);
  color: white;
  padding: 10px 26px;
  font-weight: bold;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-form button:hover {
  background-color: #7f0019;
}

.search-form .note {
  font-size: 12px;
  color: var(--primary);
  margin-top: 10px;
}

/* === ESCORT KARTLARI === */
.escort-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 30px 20px;
  max-width: 1300px;
  margin: auto;
}

.escort-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow);
  overflow: hidden;
  position: relative;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.3s;
  flex: 0 1 260px;
}

.escort-card:hover {
  box-shadow: 0 4px 12px var(--shadow);
}

.escort-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.escort-validated {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--info);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.escort-info {
  padding: 14px 10px 20px;
}

.escort-info h3 {
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  margin: 8px 0;
  text-transform: uppercase;
}

.escort-info .location,
.escort-info .service-type {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

/* === DETAY SAYFASI === */
.escort-detail {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow);
}

.escort-detail h2 {
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}

.escort-detail-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow);
}

.escort-detail-card img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

.escort-detail-left {
  flex: 1;
  min-width: 300px;
}

.escort-detail-left img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  object-fit: cover;
  max-height: 500px;
}

.escort-info {
  flex: 1;
  font-size: 15px;
}

.escort-info h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 20px;
}

.escort-info p {
  margin-bottom: 10px;
  color: var(--text);
}

.price-list {
  margin-top: 20px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 4px var(--shadow);
}

.price-list h3 {
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 10px;
}

.price-list table {
  width: 100%;
  border-collapse: collapse;
}

.price-list td {
  padding: 8px 6px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.price-list td:last-child {
  text-align: right;
}

.escort-gallery {
  margin-top: 20px;
}

.escort-gallery h3 {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-grid img {
  width: 100px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox modern stil */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox-inner {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.lightbox-controls span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  background: rgba(0,0,0,0.3);
  padding: 10px 20px;
  border-radius: 8px;
  user-select: none;
}

.lightbox-controls span:hover {
  background: rgba(0,0,0,0.6);
}

.lightbox-controls .prev {
  left: 10px;
}
.lightbox-controls .next {
  right: 10px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  font-size: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
}


/* === FOOTER === */
.site-footer {
  background-color: #111;
  color: #ccc;
  padding: 40px 20px 20px;
  font-size: 14px;
  margin-top: 40px;
}

.site-footer .footer-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.site-footer .footer-logo img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.site-footer .footer-links {
  margin-bottom: 15px;
}

.site-footer .footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.site-footer .footer-links a:hover {
  color: var(--primary);
}

.site-footer .footer-note {
  color: #777;
  font-size: 13px;
}

/* === OPRET ANNONCE FORM === */
/* === Opret Annonce Sayfası === */
.opret-annonce-container {
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: var(--card-bg);
  padding: 30px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--shadow);
}

.form-left {
  flex: 1.5;
  min-width: 300px;
}

.form-left h2 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
}

.form-left form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--text);
}

.form-left input[type="text"],
.form-left input[type="email"],
.form-left input[type="password"],
.form-left textarea,
.form-left select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
}

.form-left textarea {
  resize: vertical;
}

.image-rules {
  background: #f9f9f9;
  padding: 10px 14px;
  border-left: 3px solid var(--primary);
  font-size: 14px;
  margin: 12px 0;
  line-height: 1.5;
}

.submit-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 20px;
}

.submit-btn:hover {
  background-color: #7f0019;
}

.form-right {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  color: var(--text);
}

.form-right h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 16px;
}

.form-right p {
  margin-bottom: 12px;
}

.form-right small {
  color: var(--muted);
  display: block;
  margin-top: 10px;
}

/* === LOGIN SAYFASI === */
.login-page {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* ekranın üstünden başlat */
  padding-top: 40px;        /* sadece üst boşluk */
  padding-bottom: 60px;
  background-color: var(--background);
  min-height: auto;         /* ekranın %100 yüksekliği zorunlu değil */
  box-sizing: border-box;
}

.login-container {
  width: 100%;
  max-width: 400px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 30px;
  text-align: center;
}

.login-container h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.login-container label {
  display: block;
  text-align: left;
  margin-bottom: 15px;
  font-weight: bold;
}

.login-container input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.login-container button {
  margin-top: 15px;
  background-color: var(--primary);
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

.login-container .error {
  color: red;
  margin-bottom: 15px;
}

/* === PANEL === */
.panel-container {
  max-width: 1100px;
  margin: 40px auto;
  background: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow);
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.panel-sidebar {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--border-color);
  padding-right: 20px;
}

.panel-sidebar h3 {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--primary);
  font-weight: bold;
}

.panel-sidebar a,
.panel-sidebar button {
  background: #f2f2f2;
  border: none;
  padding: 10px 14px;
  text-align: left;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
}

.panel-sidebar a:hover,
.panel-sidebar button:hover {
  background: #e0e0e0;
}

.panel-main {
  flex: 1;
}

.panel-main h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.panel-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.panel-box {
  border: 2px solid var(--border-color);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  background: #f9f9f9;
  cursor: pointer;
  transition: border 0.2s, background 0.2s;
}

.panel-box.selected {
  border-color: var(--primary);
  background: #fff4f4;
}

.panel-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.panel-terms {
  width: 100%;
  height: 120px;
  font-size: 13px;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  resize: none;
  margin-bottom: 10px;
  background: #fff;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin: 10px 0;
}

.auto-renew {
  background: #f2f8ff;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 20px;
}

.payment-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.payment-logos img {
  height: 30px;
}

.payment-button {
  background: var(--primary);
  color: #fff;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.payment-button:hover {
  background: #7f0019;
}

.escort-panel-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto;
}

.sidebar {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.sidebar h4 {
  margin-top: 20px;
  font-weight: bold;
  color: var(--text);
}

.sidebar-btn {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
}

.panel-main {
  flex: 1;
  font-size: 14px;
}

.panel-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.package-box {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #f9f9f9;
  padding: 14px;
  box-shadow: 0 1px 3px var(--shadow);
}

.package-box.selected {
  outline: 2px solid var(--primary);
}

.terms-box {
  width: 100%;
  padding: 10px;
  font-size: 13px;
  margin-bottom: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  resize: none;
  background: #fff;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}

.checkbox-grey {
  background: #f0f4f8;
  padding: 10px;
  border-radius: 4px;
}

.payment-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.package-box.selected {
  outline: 2px solid var(--primary);
  box-shadow: 0 0 6px var(--shadow);
}

/* === Mobil Uyum (Responsive) === */
@media screen and (max-width: 768px) {

  .top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    text-align: center;
  }

  .header-right {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .logo-wrapper img {
    height: 70px;
  }

  .escort-grid {
    grid-template-columns: 1fr !important;
    padding: 20px 10px;
  }

  .escort-detail-card {
    flex-direction: column;
    align-items: center;
  }

  .escort-detail-card img {
    max-width: 100%;
  }

  .opret-annonce-container {
    flex-direction: column;
    padding: 20px;
  }

  .form-left, .form-right {
    min-width: 100%;
  }

  .escort-panel-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .panel-main {
    width: 100%;
  }

  .panel-packages {
    grid-template-columns: 1fr;
  }

  .login-wrapper,
  .login-page {
    padding: 20px;
  }

  .login-container {
    max-width: 100%;
    box-shadow: none;
    border: none;
    padding: 20px;
  }

  .search-form {
    padding: 20px 10px;
  }

  .search-form .filters {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-grid {
    justify-content: center;
  }

  .payment-row {
    flex-direction: column;
    align-items: stretch;
  }

  .submit-btn {
    width: 100%;
    margin: 0 auto;
  }
}

/* === Sidebar Link Renkleri ve Aktif Buton === */
.sidebar a.sidebar-btn {
  color: var(--text);
  text-decoration: none;
  font-weight: normal;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px 12px;
  transition: background 0.2s;
}

.sidebar a.sidebar-btn:hover {
  background: #f3f3f3;
  color: var(--primary);
}

.sidebar a.sidebar-btn:visited {
  color: var(--text); /* Mor olmasını engeller */
}

/* Aktif sayfa vurgusu */
.sidebar a.sidebar-btn.active {
  background-color: #fff4f4;
  border-left: 4px solid var(--primary);
  font-weight: bold;
}

.age-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10,10,10,0.85);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-popup {
  background: var(--card-bg);
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 30px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.age-popup h2 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 14px;
}

.age-popup p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 20px;
}

.age-buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.age-buttons button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.age-buttons button:hover {
  background: #7f0019;
}

/* === BASISOPLYSNINGER - PANEL STİLİ === */
.panel-main .basisoplysninger-title {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 20px;
}

.basisoplysninger-form {
  background-color: #f9f9f9;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 2px 6px var(--shadow);
  border: 1px solid var(--border-color);
  max-width: 600px;
}

.basisoplysninger-form .form-group {
  margin-bottom: 18px;
}

.basisoplysninger-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: var(--text);
}

.basisoplysninger-form input[type="text"],
.basisoplysninger-form input[type="email"],
.basisoplysninger-form input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-sizing: border-box;
}

.basisoplysninger-form .submit-btn {
  background-color: var(--primary);
  color: #fff;
  font-weight: bold;
  padding: 12px 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s;
}

.basisoplysninger-form .submit-btn:hover {
  background-color: #7f0019;
}

.basisoplysninger-form .checkbox-list label {
  display: inline-block;
  margin-right: 12px;
  font-weight: normal;
}

.annoncetekst-wrapper {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow);
  max-width: 800px;
  margin: auto;
}

.annoncetekst-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 15px;
}

.annoncetekst-form input[type="text"] {
  margin-bottom: 7px; /* başlık ve açıklama arasına boşluk */
}

.annoncetekst-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.annoncetekst-form .submit-btn {
  margin-top: 20px;
}

/* === ANONCETEXT - PANEL STİLİ === */
.annoncetekst-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 6px var(--shadow);
}

.annoncetekst-form .form-group {
  margin-bottom: 20px;
}

.annoncetekst-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.annoncetekst-form input[type="text"],
.annoncetekst-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
}

/* billede paneli arka plan uyumu */
body, .escort-panel-wrapper {
  background-color: #f7f7f7;
}

/* Görsel yükleme alanı */
.image-input-row {
  margin-bottom: 20px;
}

.image-input-row input[type="file"] {
  background: #fafafa;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  font-family: inherit;
}

/* + resim ekle butonu */
#imageForm button[type="button"] {
  background-color: #ffffff;
  border: 1px dashed #888;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 24px;
  transition: background-color 0.2s ease;
}

#imageForm button[type="button"]:hover {
  background-color: #f0f0f0;
}

/* Kaydet butonu */
#imageForm .submit-btn {
  margin-top: 10px;
}

/* Galeri görüntüleme */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid div {
  text-align: center;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

.validering-wrapper {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow);
  max-width: 800px;
  margin: auto;
}

.validering-wrapper ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: square;
}

.validering-kod-box {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 20px;
  margin: 20px 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  max-width: 300px;
}

/* === PRISLISTE - PANEL STİLİ === */
.prisliste-wrapper {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow);
  max-width: 800px;
  margin: auto;
}

.price-list-display {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.price-item {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px 15px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.price-item > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.price-item span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.price-item a {
  text-decoration: none;
  font-size: 14px;
  color: #0073aa;
}

.price-item a:hover {
  text-decoration: underline;
}

.price-item .edit-form {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-item .edit-form input[type="text"],
.price-item .edit-form input[type="number"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 150px;
}

.price-item .edit-form button {
  padding: 8px 12px;
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.price-item .edit-form button:hover {
  background-color: #005f8d;
}


.vagtplan-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.vagtplan-form select,
.vagtplan-form input {
  padding: 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  flex: 1;
  min-width: 150px;
}

.vagtplan-liste .vagt-item {
  background: #f5f5f5;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 8px;
}
.escort-shiftplan {
  margin-top: 30px;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.escort-shiftplan h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary);
}

.escort-shiftplan table {
  width: 100%;
  border-collapse: collapse;
}

.escort-shiftplan th,
.escort-shiftplan td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
}

.escort-shiftplan th {
  background-color: #eee;
  font-weight: bold;
}

.escort-shiftplan tr:last-child td {
  border-bottom: none;
}

.escort-section-block {
  margin-top: 30px;
  background: #f9f9f9;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px var(--shadow);
}

.escort-section-block h3 {
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 18px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
}

.escort-section-block table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.escort-section-block table th,
.escort-section-block table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-color);
}

.escort-section-block table th {
  background: #eee;
  font-weight: bold;
  color: #333;
}

.escort-section-block table td:last-child {
  text-align: right;
}

.escort-section-block table tr:last-child td {
  border-bottom: none;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.lightbox-inner {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.lightbox-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.lightbox-controls span {
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  padding: 0 20px;
}

.lightbox-close {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #fff;
  color: #000;
  font-size: 30px;
  padding: 4px 10px;
  border-radius: 50%;
  cursor: pointer;
}


.payment-container {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.payment-summary p {
  margin: 5px 0;
  font-weight: bold;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-form input[type="text"] {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.payment-expiry {
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit-btn {
  padding: 12px;
  background-color: var(--primary, #c00);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/** VAGT PLAN STİLİ **/
.vagtplan-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 2px 6px var(--shadow);
}

.vagt-item {
  background-color: #fff;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 1px 3px var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.vagt-item select,
.vagt-item input[type="time"],
.vagt-item input[type="text"] {
  padding: 8px 10px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  min-width: 120px;
  flex: 1;
}

.vagt-item button {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.vagt-item button:hover {
  background-color: #7f001a;
}

.vagt-item a {
  color: red;
  font-size: 14px;
  text-decoration: none;
  padding: 8px;
  transition: opacity 0.3s;
}

.vagt-item a:hover {
  opacity: 0.7;
}

/** KØBHISTORIK STİLİ **/
.payment-history-wrapper {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  overflow-x: auto;
}

.payment-history-wrapper h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #333;
}

.payment-history-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.payment-history-table th,
.payment-history-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.payment-history-table th {
  background-color: #f9f9f9;
  color: #444;
  font-weight: 600;
}

.payment-history-table tr:last-child td {
  border-bottom: none;
}

.payment-history-table td {
  color: #555;
}

/**ANNONCETID STİLİ **/
.annoncetid-box {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  font-family: Arial, sans-serif;
}

.annoncetid-box h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}

.annoncetid-box p {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
  text-align: center;
}

.annoncetid-box form label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  color: #333;
}

.annoncetid-box select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  font-size: 16px;
  transition: border-color 0.3s;
}

.annoncetid-box select:focus {
  border-color: #007bff;
  outline: none;
}

.annoncetid-box .submit-btn {
  width: 100%;
  padding: 14px 0;
  background-color: #c00;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.annoncetid-box .submit-btn:hover {
  background-color: #7f001a;
}

/* === TAM MOBİL UYUMLULUK - TÜM SAYFALAR İÇİN === */

/* === Küçük Telefonlar (0 - 480px) === */
@media screen and (max-width: 480px) {
  .escort-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 15px;
  }

  .escort-card {
    width: 100%;
    max-width: 100%;
  }

  .escort-card img {
    height: 220px;
  }

  .gallery-grid,
  .panel-boxes,
  .panel-packages {
    grid-template-columns: 1fr !important;
  }

  .escort-detail-card {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .escort-detail-left img {
    max-height: 300px;
    width: 100%;
  }

  .form-left,
  .form-right,
  .login-container,
  .panel-main,
  .sidebar {
    width: 100%;
    min-width: 100%;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .site-footer .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .logo-wrapper img {
    height: 60px;
  }

  .submit-btn {
    width: 100%;
    margin: 0 auto;
  }

  .search-form {
    padding: 15px;
  }

  .search-form .filters {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}


/* === Tabletler (481px - 991px) === */
@media screen and (min-width: 481px) and (max-width: 991px) {
  .escort-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .escort-card {
    width: 100%;
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .panel-boxes,
  .panel-packages {
    grid-template-columns: repeat(2, 1fr);
  }

  .escort-detail-card {
    flex-direction: column;
  }

  .search-form {
    padding: 20px;
  }

  .search-form .filters {
    flex-wrap: wrap;
    justify-content: center;
  }
}
