body {
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 0;
  padding: 0;
  color: #2d3748;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 24px auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 32px 24px;
  min-height: calc(100vh - 48px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

header {
  text-align: center;
  margin-bottom: 32px;
}

header h1 {
  margin: 0 0 12px 0;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.5px;
}

header h2 {
  margin: 0 0 20px 0;
  font-size: 1.2rem;
  color: #718096;
  font-weight: 500;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.actions button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

section {
  margin-bottom: 32px;
}

section h3 {
  color: #2d3748;
  margin-bottom: 16px;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}

section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

ul li {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1rem;
  transition: all 0.2s ease;
}

ul li:hover {
  background: #f7fafc;
  padding-left: 8px;
  border-radius: 8px;
}

ul li:last-child {
  border-bottom: none;
}

.gallery-placeholder {
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  color: #667eea;
  text-align: center;
  padding: 48px 0;
  border-radius: 16px;
  font-size: 1.1rem;
  border: 2px dashed #cbd5e0;
}

/* Boş durum bileşeni - tema renklerine duyarlı */
.empty-state {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.06),
    rgba(118, 75, 162, 0.06)
  );
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2d3748;
}
.empty-state .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea, #764ba2)
  );
  color: #fff;
  box-shadow: 0 6px 18px rgba(102, 126, 234, 0.25);
}
.empty-state .text {
  font-weight: 700;
}
.empty-state .hint {
  color: #718096;
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 20px 16px 16px 16px;
  position: sticky;
  top: 0;
  z-index: 10;
  border-radius: 0 0 20px 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-nav button {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(102, 126, 234, 0.1);
  color: var(--primary-color, #667eea);
  font-size: 1.1rem;
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  backdrop-filter: blur(10px);
}

.main-nav button.active,
.main-nav button:hover {
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea, #764ba2)
  );
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  border-color: transparent;
}

.company h4,
.contact h4 {
  margin: 12px 0 4px 0;
  color: #333;
  font-size: 1.05rem;
}

a {
  color: #1a73e8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.profile-pic-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.profile-pic {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #e3eafc;
  box-shadow: 0 2px 12px rgba(26, 115, 232, 0.08);
  background: #fff;
}

.social-accounts ul li,
.bank-accounts ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.social-accounts ul li i,
.bank-accounts ul li i {
  font-size: 1.15em;
  min-width: 22px;
  color: #1a73e8;
}

@media (max-width: 700px) {
  .profile-pic {
    width: 100px;
    height: 100px;
  }
  .social-accounts ul li,
  .bank-accounts ul li {
    font-size: 0.97rem;
    gap: 7px;
  }
  .social-accounts ul li i,
  .bank-accounts ul li i {
    font-size: 1em;
    min-width: 18px;
  }
}

@media (min-width: 1000px) {
  .container {
    max-width: 1200px;
    padding: 40px 48px;
  }
  .profile-pic {
    width: 160px;
    height: 160px;
  }
  header h1 {
    font-size: 2.7rem;
  }
  header h2 {
    font-size: 1.3rem;
  }
  .main-nav button {
    font-size: 1.3rem;
    padding: 16px 20px;
    min-width: 56px;
    min-height: 56px;
  }
  .social-accounts ul li,
  .bank-accounts ul li {
    font-size: 1.15rem;
    gap: 16px;
    padding: 10px 0;
  }
  .social-accounts ul li i,
  .bank-accounts ul li i {
    font-size: 1.3em;
    min-width: 28px;
  }
  section h3 {
    font-size: 1.4rem;
  }
}

.profile-social-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 40px;
}

/* Mobil responsive için ana layout düzeltmesi */
@media (max-width: 768px) {
  .profile-social-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
    max-width: 100%;
    overflow: hidden;
  }

  .profile-card {
    order: 1;
    margin-bottom: 20px;
    max-width: 100%;
    overflow: hidden;
  }

  .social-card {
    order: 2;
    max-width: 100%;
    overflow: hidden;
  }
}

.profile-card {
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  padding: 40px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.profile-pic-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

.profile-pic {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-pic:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.profile-card h1 {
  font-size: 2.2rem;
  margin: 24px 0 8px 0;
  color: #2d3748;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  line-height: 1.2;
}

.profile-card h2 {
  font-size: 1.2rem;
  color: #718096;
  margin-bottom: 24px;
  font-weight: 500;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  line-height: 1.3;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
  width: 100%;
}

.action-btn {
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #2d3748, #4a5568)
  ) !important;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(45, 55, 72, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.action-btn:hover {
  background: var(
    --secondary-gradient,
    linear-gradient(135deg, #4a5568, #2d3748)
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 55, 72, 0.3);
}

.social-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  padding: 40px 32px 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 100%;
  overflow: hidden;
}

.social-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 24px;
  text-align: left;
  letter-spacing: -0.5px;
}

.social-underline {
  display: inline-block;
  width: 80px;
  height: 4px;
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea, #764ba2)
  );
  border-radius: 2px;
  margin-left: 16px;
  vertical-align: middle;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  max-width: 100%;
  overflow: hidden;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 24px 12px 16px 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
}

.social-item:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.social-item i,
.social-item .custom-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  color: var(--primary-color, #667eea);
}

.social-item:hover i,
.social-item:hover .custom-icon {
  transform: scale(1.1);
  color: var(--secondary-color, #764ba2);
}

.social-item .custom-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.social-item span {
  font-size: 1rem;
  color: #2d3748;
  font-weight: 600;
  margin-top: 4px;
  text-align: center;
}

/* Sosyal medya açıklama kurdele banner'ı */
.description-banner {
  position: absolute;
  top: 10px;
  right: -15px;
  background: var(--primary-color, #667eea);
  color: white;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 0;
  transform: rotate(45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  white-space: nowrap;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bank-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 24px;
  text-align: left;
  letter-spacing: -0.5px;
}

.bank-accounts {
  max-width: 100%;
  overflow: hidden;
}

.bank-underline {
  display: inline-block;
  width: 80px;
  height: 4px;
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea, #764ba2)
  );
  border-radius: 2px;
  margin-left: 16px;
  vertical-align: middle;
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  margin-bottom: 32px;
  max-width: 100%;
  overflow: hidden;
}

.bank-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 24px 12px 16px 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  word-wrap: break-word;
}

.bank-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea, #764ba2)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bank-item:hover::before {
  opacity: 1;
}

.bank-item:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.bank-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.bank-item:hover .bank-icon {
  transform: scale(1.1);
}

.bank-item span {
  font-size: 1rem;
  color: #2d3748;
  font-weight: 600;
  margin-top: 4px;
  text-align: center;
}

.bank-item small {
  font-size: 0.85em;
  color: #718096;
  font-weight: 500;
}

.store-underline {
  display: inline-block;
  width: 80px;
  height: 4px;
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea, #764ba2)
  );
  border-radius: 2px;
  margin-left: 16px;
  vertical-align: middle;
}

.bank-copy-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary-color, #667eea);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.bank-item:hover .bank-copy-icon {
  opacity: 1;
  transform: scale(1);
}

.bank-copy-icon:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
  color: var(--secondary-color, #764ba2);
}

.bank-copy-icon i {
  font-size: 16px;
}

@media (max-width: 1000px) {
  .bank-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 10px;
  }
}

@media (max-width: 700px) {
  .bank-title {
    font-size: 1.2rem;
  }
  .bank-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 6px;
  }
  .bank-icon {
    width: 28px;
    height: 28px;
  }
  .bank-item span {
    font-size: 0.95rem;
  }
}

.company-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 36px;
  margin: 32px 0 0 0;
}

.company-left {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 32px 28px 28px 28px;
}

.company-logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.company-logo {
  max-width: 260px;
  max-height: 80px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26, 115, 232, 0.08);
  padding: 12px 24px;
}

.company-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color, #232b38);
  margin-bottom: 18px;
  text-align: left;
}

.company-left h4 {
  margin-top: 22px;
  font-size: 1.1rem;
  color: var(--primary-color, #1a73e8);
  font-weight: 700;
}

.company-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.company-info-box {
  background: #f7f7fa;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 24px 18px 18px 18px;
  margin-bottom: 0;
}

.company-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color, #232b38) !important;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--primary-color, #1a73e8) !important;
  display: inline-block;
  padding-bottom: 2px;
}

.company-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.company-info-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #232b38;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.company-info-list li i {
  font-size: 1.2em;
  color: var(--primary-color, #1a73e8) !important;
  min-width: 22px;
  margin-top: 2px;
}

.company-info-list li b {
  color: var(--primary-color, #232b38) !important;
  font-weight: 700;
}

.company-info-list a {
  color: var(--primary-color, #1a73e8) !important;
  text-decoration: none;
  word-break: break-all;
}

.company-info-list a:hover {
  text-decoration: underline;
}

.company-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.company-hours-list li {
  font-size: 1rem;
  color: var(--primary-color, #232b38) !important;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.company-bill-btn {
  display: inline-block;
  background: var(
    --primary-gradient,
    linear-gradient(90deg, #1a73e8 60%, #155ab6 100%)
  );
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  padding: 12px 32px;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.1);
  transition: background 0.2s, box-shadow 0.2s;
}

.company-bill-btn:hover {
  background: linear-gradient(90deg, #155ab6 60%, #1a73e8 100%);
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.18);
}

@media (max-width: 1000px) {
  .company-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .company-left,
  .company-info-box {
    padding: 18px 6vw 14px 6vw;
  }
  .company-logo {
    max-width: 180px;
    max-height: 60px;
    padding: 8px 12px;
  }
}

@media (max-width: 700px) {
  .company-title {
    font-size: 1.1rem;
  }
  .company-section-title {
    font-size: 1rem;
  }
  .company-info-list li,
  .company-hours-list li {
    font-size: 0.95rem;
  }
  .company-bill-btn {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}

.about-modules {
  list-style: none;
  padding: 0;
  margin: 18px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-modules li {
  background: #f7f7fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 16px 18px 10px 18px;
  font-size: 1rem;
  color: #232b38;
  font-weight: 500;
  line-height: 1.5;
}

.about-modules li b {
  color: #1a73e8;
  font-weight: 700;
  font-size: 1.05em;
}

.about-modules li small {
  display: block;
  color: #888;
  font-size: 0.95em;
  margin-top: 4px;
}

.about-modules li span {
  display: block;
  margin: 5px 0;
}

/* Metin alanları için alt satır koruma */
.preserve-whitespace {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#about h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #232b38;
  font-weight: 700;
}

#about h4 {
  font-size: 1.1rem;
  color: #1a73e8;
  font-weight: 700;
  margin: 18px 0 10px 0;
}

#about hr {
  border: none;
  border-top: 2px solid #e3eafc;
  margin: 18px 0;
}

@media (max-width: 700px) {
  .about-modules li {
    font-size: 0.97rem;
    padding: 10px 8px 8px 8px;
  }
  #about h3 {
    font-size: 1.1rem;
  }
  #about h4 {
    font-size: 1rem;
  }
}

/* Yönetim Paneli için ek stiller */
.admin-container {
  max-width: 600px;
  margin: 60px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 32px 28px 24px 28px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.admin-container h1 {
  text-align: center;
  margin-bottom: 24px;
  color: #2d3a4a;
}

#login-section,
#panel-section {
  margin-top: 12px;
}

#login-form label {
  display: block;
  margin-bottom: 6px;
  color: #444;
  font-weight: 500;
}

#login-form input {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 16px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 15px;
  background: #f8f8f8;
  transition: border 0.2s;
}

#login-form input:focus {
  border: 1.5px solid #007bff;
  outline: none;
}

#login-form button {
  width: 100%;
  padding: 10px 0;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

#login-form button:hover {
  background: #0056b3;
}

#login-error {
  color: #d32f2f;
  font-size: 14px;
  text-align: center;
}

#panel-section h2 {
  color: #2d3a4a;
  margin-bottom: 18px;
  text-align: center;
}

#admin-forms {
  margin-bottom: 18px;
}

#logout-btn {
  width: 100%;
  padding: 10px 0;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

#logout-btn:hover {
  background: #c0392b;
}

/* Admin form styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.1);
}

.form-group input[readonly] {
  background-color: #f5f5f5;
  color: #666;
}

.save-btn {
  background: #1a73e8;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.save-btn:hover {
  background: #155ab6;
}

#loading-message {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 20px;
}

#user-data-form h3,
#social-links-form h3 {
  color: #1a73e8;
  margin-bottom: 20px;
  font-size: 1.2rem;
  border-bottom: 2px solid #e3eafc;
  padding-bottom: 10px;
}

#user-data-form,
#social-links-form {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Sosyal medya formu stilleri */
.add-social-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  margin-bottom: 20px;
}

.add-social-form h4 {
  color: #1a73e8;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.social-accounts-list {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.social-accounts-list h4 {
  color: #1a73e8;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.social-account-item {
  transition: all 0.2s ease;
}

.social-account-item:hover {
  background: #f1f3f4 !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.delete-social-btn:hover {
  background: #c82333 !important;
}

/* Galeri Stilleri */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  position: relative;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-info {
  padding: 15px;
}

.gallery-info h4 {
  margin: 0 0 8px 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.gallery-info p {
  margin: 0 0 8px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

.gallery-info small {
  color: #999;
  font-size: 12px;
}

/* Responsive Galeri */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }

  .gallery-image img {
    height: 150px;
  }

  .gallery-info {
    padding: 12px;
  }

  .gallery-info h4 {
    font-size: 14px;
  }

  .gallery-info p {
    font-size: 12px;
  }
}

/* Mağaza Linkleri Stilleri */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  margin-bottom: 32px;
}

.store-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 24px 12px 16px 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.store-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea, #764ba2)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.store-item:hover::before {
  opacity: 1;
}

.store-item:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.store-icon {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.store-item:hover .store-icon {
  transform: scale(1.1);
}

.store-info h4 {
  font-size: 1.1rem;
  color: #2d3748;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-align: center;
}

.store-info p {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

/* Responsive Mağaza Linkleri */
@media (max-width: 768px) {
  .stores-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .store-item {
    padding: 15px;
  }

  .store-icon i {
    font-size: 2em;
  }

  .store-info h4 {
    font-size: 14px;
  }

  .store-info p {
    font-size: 12px;
  }
}

/* İlanlar/Ürünler Stilleri */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.listing-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.listing-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.listing-item:hover::before {
  opacity: 1;
}

.listing-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.listing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.listing-icon {
  color: #667eea;
}

.listing-platform span {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.listing-content h4 {
  font-size: 1.2rem;
  color: #2d3748;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.listing-content p {
  font-size: 0.95rem;
  color: #718096;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.listing-content .price {
  color: #38a169;
  font-weight: 600;
}

.listing-content .description {
  font-style: italic;
  color: #a0aec0;
}

.listing-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.listing-footer small {
  color: #a0aec0;
  font-size: 0.85rem;
}

/* Responsive İlanlar */
@media (max-width: 768px) {
  .listings-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
  }

  .listing-item {
    padding: 15px;
  }

  .listing-content h4 {
    font-size: 16px;
  }

  .listing-content p {
    font-size: 13px;
  }

  .listing-content .price {
    font-size: 15px;
  }
}

/* Çok küçük ekranlar için (mobil) */
@media (max-width: 600px) {
  .listings-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
  }
}

/* Tek sütun sadece çok küçük ekranlar için */
@media (max-width: 320px) {
  .listings-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ===== ADMIN PANEL STİLLERİ ===== */

/* Admin Panel Ana Container */
.admin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
}

/* Admin Panel Header */
.admin-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}

.admin-header h1 {
  color: #2d3748;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.admin-header p {
  color: #718096;
  text-align: center;
  font-size: 1.1rem;
  margin: 0;
}

/* Login Form Stilleri */
.login-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  margin: 50px auto;
  box-sizing: border-box;
}

.login-container h2 {
  color: #2d3748;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 600;
}

/* Form Grupları */
.form-group {
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #4a5568;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f7fafc;
  color: #2d3748;
  box-sizing: border-box;
  margin: 0;
  line-height: 1.4;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #667eea;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
  font-size: 0.9rem;
}

/* Form Section İçindeki Form Grupları */
.form-section .form-group {
  margin-bottom: 18px;
}

.form-section .form-group:last-child {
  margin-bottom: 0;
}

/* Platform Form İçindeki Form Grupları */
.platform-form .form-group {
  margin-bottom: 16px;
}

.platform-form .form-group:last-child {
  margin-bottom: 0;
}

/* Buton Stilleri */
.save-btn,
.login-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.save-btn:hover,
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.save-btn:active,
.login-btn:active {
  transform: translateY(0);
}

/* Form Bölümleri */
.form-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-section h3 {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}

.form-section h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 1px;
}

.form-section h4 {
  color: #4a5568;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 25px 0 15px 0;
}

/* Loading Mesajı */
.loading-message {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  color: #4a5568;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Platform Form Stilleri */
.platform-form {
  background: #f8fafc;
  border-radius: 15px;
  padding: 20px;
  margin: 15px 0;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.platform-form:hover {
  border-color: #667eea;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

/* Liste Öğeleri */
.social-account-item,
.bank-account-item,
.document-item,
.image-item,
.store-link-item,
.listing-item {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.social-account-item:hover,
.bank-account-item:hover,
.document-item:hover,
.image-item:hover,
.store-link-item:hover,
.listing-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

/* Buton Grupları */
.btn-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-group button {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Özel Buton Renkleri */
.btn-primary {
  background: linear-gradient(135deg, #4299e1, #3182ce);
  color: white;
}

.btn-success {
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: white;
}

.btn-warning {
  background: linear-gradient(135deg, #ed8936, #dd6b20);
  color: white;
}

.btn-danger {
  background: linear-gradient(135deg, #f56565, #e53e3e);
  color: white;
}

.btn-info {
  background: linear-gradient(135deg, #38b2ac, #319795);
  color: white;
}

/* Grid Layout İyileştirmeleri */
.gallery-grid,
.stores-grid,
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.gallery-item,
.store-item,
.listing-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.gallery-item:hover,
.store-item:hover,
.listing-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

/* İkon Stilleri */
.icon-large {
  font-size: 2.5em;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

.icon-medium {
  font-size: 1.8em;
  margin-right: 10px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .admin-container {
    padding: 10px;
  }

  .admin-header {
    padding: 20px;
    margin-bottom: 15px;
  }

  .admin-header h1 {
    font-size: 2rem;
  }

  .form-section {
    padding: 18px;
    margin-bottom: 15px;
  }

  .platform-form {
    padding: 15px;
    margin: 10px 0;
  }

  .gallery-grid,
  .stores-grid,
  .listings-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .admin-container {
    padding: 8px;
  }

  .admin-header {
    padding: 15px;
    margin-bottom: 10px;
  }

  .admin-header h1 {
    font-size: 1.8rem;
  }

  .form-section {
    padding: 15px;
    margin-bottom: 10px;
  }

  .platform-form {
    padding: 12px;
    margin: 8px 0;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  .gallery-grid,
  .stores-grid,
  .listings-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-section {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll Bar Stilleri */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

/* Profil fotoğrafı yükleme alanı stilleri */
.profile-photo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.profile-photo-frame {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid #1a73e8;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
  transition: all 0.3s ease;
}

.profile-photo-frame:hover {
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
  transform: scale(1.02);
}

#profile-photo-preview {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

#profile-photo {
  margin: 0 auto;
  display: block;
  padding: 8px;
  border: 2px dashed #1a73e8;
  border-radius: 8px;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
}

#profile-photo:hover {
  background: #e3f2fd;
  border-color: #1976d2;
}

#profile-photo:focus {
  outline: none;
  border-color: #1565c0;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* Logo yükleme alanı stilleri */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.logo-frame {
  width: 300px;
  height: 120px;
  border: 3px solid #1a73e8;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.logo-frame:hover {
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
  transform: scale(1.02);
}

#company-logo-preview {
  max-width: 280px;
  max-height: 100px;
  object-fit: contain;
  border: 2px solid #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#company-logo {
  margin: 0 auto;
  display: block;
  padding: 8px;
  border: 2px dashed #1a73e8;
  border-radius: 8px;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
}

#company-logo:hover {
  background: #e3f2fd;
  border-color: #1976d2;
}

#company-logo:focus {
  outline: none;
  border-color: #1565c0;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* Loading göstergesi stilleri - Bu tanım kaldırıldı, aşağıdaki daha kapsamlı tanım kullanılıyor */

/* Buton loading durumu */
.save-btn.loading,
.add-social-btn.loading,
.add-bank-btn.loading,
.add-document-btn.loading,
.add-image-btn.loading,
.add-store-btn.loading,
.add-listing-btn.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.save-btn.loading::after,
.save-btn.loading::before {
  animation: spin 1s linear infinite;
}

/* Modül Butonları Stilleri */
.module-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.module-button {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.module-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.module-button:hover::before {
  left: 100%;
}

.module-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #1a73e8;
}

.module-button:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.module-button h3 {
  margin: 0 0 12px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.module-button p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.module-button i {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.module-button:hover i {
  transform: scale(1.1);
}

/* Geri Dön Butonu */
.back-button {
  background: linear-gradient(135deg, #6c757d, #5a6268);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.back-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.back-button:hover::before {
  left: 100%;
}

.back-button:hover {
  background: linear-gradient(135deg, #5a6268, #495057);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.back-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .module-buttons {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    margin: 20px 0;
  }

  .module-button {
    padding: 20px;
  }

  .module-button h3 {
    font-size: 16px;
  }

  .module-button p {
    font-size: 13px;
  }

  .module-button i {
    font-size: 32px;
  }

  .back-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .module-buttons {
    padding: 12px;
    gap: 12px;
  }

  .module-button {
    padding: 16px;
  }

  .module-button h3 {
    font-size: 15px;
  }

  .module-button p {
    font-size: 12px;
  }

  .module-button i {
    font-size: 28px;
  }
}

/* Çalışma Saatleri Tablosu */
.working-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 14px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.working-hours-table th,
.working-hours-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.working-hours-table th {
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #1a73e8, #4285f4)
  );
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.working-hours-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.working-hours-table tbody tr:hover {
  background-color: #e3f2fd;
  transition: background-color 0.3s ease;
}

.working-hours-table td {
  color: #333;
  font-weight: 500;
}

.working-hours-table .closed {
  color: #d32f2f;
  font-style: italic;
  font-weight: 600;
}

@media (max-width: 768px) {
  .working-hours-table {
    font-size: 13px;
  }

  .working-hours-table th,
  .working-hours-table td {
    padding: 10px 12px;
  }
}

/* Loading Ekranı */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-overlay.show {
  display: flex;
  opacity: 1;
}

.loading-container {
  text-align: center;
  color: white;
  max-width: 400px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  height: 80px;
  position: relative;
}

.spinner-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  position: absolute;
  animation: spin 2s linear infinite;
}

.spinner-ring:nth-child(1) {
  animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
  width: 45px;
  height: 45px;
  animation-delay: 0.3s;
  animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
  width: 30px;
  height: 30px;
  animation-delay: 0.6s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-text h3 {
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: 600;
  color: white;
}

.loading-text p {
  font-size: 16px;
  margin: 0 0 25px 0;
  color: rgba(255, 255, 255, 0.8);
}

.loading-progress {
  margin-top: 25px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #1e90ff);
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Loading gizlenme animasyonu */
.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Responsive loading */
@media (max-width: 768px) {
  .loading-container {
    max-width: 300px;
    padding: 30px 20px;
  }

  .loading-text h3 {
    font-size: 20px;
  }

  .loading-text p {
    font-size: 14px;
  }

  .spinner-ring {
    width: 50px;
    height: 50px;
  }

  .spinner-ring:nth-child(2) {
    width: 38px;
    height: 38px;
  }

  .spinner-ring:nth-child(3) {
    width: 26px;
    height: 26px;
  }
}

/* ========== MODERN FOTO GALERİ SLIDER ========== */
.gallery-slider-container {
  position: relative;
  max-width: 100%;
  margin: 20px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  cursor: pointer;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.gallery-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-slide:hover .gallery-slide-content {
  transform: translateY(0);
}

.gallery-slide-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-slide-description {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
}

/* Slider kontrolleri */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-color, #333);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.gallery-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: var(--secondary-color, #764ba2);
}

.gallery-nav.prev {
  left: 15px;
}

.gallery-nav.next {
  right: 15px;
}

/* Slider dots */
.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.gallery-dot.active {
  background: var(--primary-color, white) !important;
  transform: scale(1.2);
}

/* Thumbnail preview */
.gallery-thumbnails {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 0 0 15px 15px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.gallery-thumbnail {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-thumbnail:hover {
  transform: scale(1.05);
  border-color: var(--primary-color, #1a73e8) !important;
}

.gallery-thumbnail.active {
  border-color: var(--primary-color, #1a73e8) !important;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.3);
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-slider {
    height: 300px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .gallery-nav.prev {
    left: 10px;
  }

  .gallery-nav.next {
    right: 10px;
  }

  .gallery-thumbnails {
    padding: 10px;
  }

  .gallery-thumbnail {
    width: 50px;
    height: 50px;
  }
}

/* ========== GELİŞMİŞ BELGE GÖRÜNÜMÜ ========== */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.document-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.document-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea, #764ba2)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.document-card:hover::before {
  opacity: 1;
}

.document-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.document-size-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea, #764ba2)
  );
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.document-icon {
  text-align: center;
  margin-bottom: 16px;
}

.document-icon i {
  font-size: 3rem;
  color: #667eea;
}

.document-info h4 {
  font-size: 1.1rem;
  color: #2d3748;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.document-info p {
  font-size: 0.9rem;
  color: #718096;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.document-info small {
  color: #a0aec0;
  font-size: 0.8rem;
}

.document-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.document-btn {
  flex: 1;
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea, #764ba2)
  );
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.document-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  background: var(
    --secondary-gradient,
    linear-gradient(135deg, #764ba2, #667eea)
  );
}

.document-btn.download {
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #38a169, #2f855a)
  );
}

.document-btn.view {
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #3182ce, #2c5aa0)
  );
}

/* ========== MODERN GALERİ ========== */

.gallery-slider-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.gallery-slider {
  position: relative;
  height: 400px;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 24px;
}

.gallery-slide-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.gallery-slide-description {
  font-size: 1rem;
  opacity: 0.9;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gallery-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
  left: 16px;
}

.gallery-nav.next {
  right: 16px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: #667eea;
  transform: scale(1.2);
}

.gallery-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

.gallery-thumbnail {
  width: 80px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.gallery-thumbnail.active,
.gallery-thumbnail:hover {
  opacity: 1;
  transform: scale(1.05);
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== MODERN ÇALIŞMA SAATLERİ ========== */

.working-hours-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.working-hours-table thead {
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea, #764ba2)
  );
  color: white;
}

.working-hours-table th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
}

.working-hours-table td {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1rem;
}

.working-hours-table tr:last-child td {
  border-bottom: none;
}

.working-hours-table tr:hover {
  background: rgba(102, 126, 234, 0.05);
}

.working-hours-table .closed {
  color: #e53e3e;
  font-weight: 600;
}

/* ========== MODERN HİZMETLER ========== */

/* Hizmetler bölümü başlığı */
#services-section h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color, #2d3748);
  margin-bottom: 24px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.service-item {
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea, #764ba2)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  background: linear-gradient(135deg, #ffffff, #f7fafc);
}

.service-item h5 {
  margin: 0 0 12px 0;
  color: var(--primary-color, #667eea);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-item p {
  margin: 0;
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
}

/* ========== MODERN ŞİRKET BİLGİLERİ ========== */

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.company-left {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.company-logo-box {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.company-logo {
  max-width: 200px;
  max-height: 120px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.company-title {
  font-size: 1.8rem;
  color: #2d3748;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.5px;
}

.company-left h4 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--primary-color, #667eea);
  font-size: 1.2rem;
  font-weight: 700;
}

.company-left p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 16px;
}

.company-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.company-info-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.company-section-title {
  font-size: 1.2rem;
  color: #667eea;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.company-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.company-info-list li {
  margin-bottom: 12px;
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.company-info-list li:last-child {
  border-bottom: none;
}

.company-info-list li i {
  font-size: 1.2em;
  color: #667eea;
  min-width: 20px;
  margin-top: 2px;
}

.company-info-list li b {
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}

.company-info-list a {
  color: #667eea;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.3s ease;
}

.company-info-list a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.company-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.company-hours-list li {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.company-hours-list li:last-child {
  border-bottom: none;
}

.company-hours-list li b {
  color: #2d3748;
  font-weight: 600;
}

.company-bill-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.company-bill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

/* ========== RESPONSIVE TASARIM DEVAMI ========== */

@media (max-width: 1000px) {
  .company-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bank-grid,
  .stores-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
  }

  .listings-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .documents-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 700px) {
  .bank-grid,
  .stores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }

  .listings-grid,
  .documents-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-slider {
    height: 300px;
  }

  .gallery-thumbnail {
    width: 60px;
    height: 45px;
  }

  .company-left,
  .company-info-box {
    padding: 20px;
  }

  .company-title {
    font-size: 1.5rem;
  }

  .working-hours-table th,
  .working-hours-table td {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* ========== ADMIN PANELİ TEMA SEÇİCİ ========== */

.theme-selector {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  min-width: 320px;
}

.theme-selector-header h3 {
  margin: 0 0 8px 0;
  color: #2d3748;
  font-size: 16px;
  font-weight: 700;
}

.theme-selector-header p {
  margin: 0 0 16px 0;
  color: #718096;
  font-size: 13px;
  line-height: 1.4;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.theme-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 12px;
  border: 2px solid transparent;
}

.theme-option:hover {
  background: rgba(102, 126, 234, 0.05);
  transform: translateY(-2px);
}

.theme-option.active {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.theme-preview {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.theme-option:hover .theme-preview {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.theme-option span {
  font-size: 11px;
  color: #4a5568;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.theme-info {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

/* ========== TEMA RENKLERİ ========== */
/* CSS variable'lar JavaScript'ten yönetiliyor */

/* ========== TEMA UYGULAMA ========== */

/* Profil sayfası tema uygulaması - BACKGROUND DEĞİŞİR */
/* Admin panelinde değişmez ama profil sayfasında değişir */

/* Modern Mavi (Varsayılan) */
body.theme-modern-blue:not(.admin-page) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Yeşil Doğa */
body.theme-nature-green:not(.admin-page) {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%) !important;
}

/* Turuncu Enerji */
body.theme-energy-orange:not(.admin-page) {
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%) !important;
}

/* Mor Premium */
body.theme-premium-purple:not(.admin-page) {
  background: linear-gradient(135deg, #9f7aea 0%, #805ad5 100%) !important;
}

/* Kırmızı Tutku */
body.theme-passion-red:not(.admin-page) {
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%) !important;
}

/* Pembe Şık */
body.theme-elegant-pink:not(.admin-page) {
  background: linear-gradient(135deg, #ed64a6 0%, #d53f8c 100%) !important;
}

/* Teal Profesyonel */
body.theme-professional-teal:not(.admin-page) {
  background: linear-gradient(135deg, #38b2ac 0%, #319795 100%) !important;
}

/* Indigo Klasik */
body.theme-classic-indigo:not(.admin-page) {
  background: linear-gradient(135deg, #5a67d8 0%, #4c51bf 100%) !important;
}

/* Amber Sıcak */
body.theme-warm-amber:not(.admin-page) {
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%) !important;
}

/* Emerald Lüks */
body.theme-luxury-emerald:not(.admin-page) {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

/* Siyah Elite */
body.theme-elite-black:not(.admin-page) {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%) !important;
}

/* Tema renkleri artık CSS variable'lar ile yönetiliyor */

.theme-passion-red .profile-card::before,
.theme-passion-red section h3::before,
.theme-passion-red .social-underline,
.theme-passion-red .bank-underline,
.theme-passion-red .main-nav button.active,
.theme-passion-red .main-nav button:hover {
  background: linear-gradient(135deg, #f56565, #e53e3e);
}

.theme-elegant-pink .profile-card::before,
.theme-elegant-pink section h3::before,
.theme-elegant-pink .social-underline,
.theme-elegant-pink .bank-underline,
.theme-elegant-pink .main-nav button.active,
.theme-elegant-pink .main-nav button:hover {
  background: linear-gradient(135deg, #ed64a6, #d53f8c);
}

.theme-professional-teal .profile-card::before,
.theme-professional-teal section h3::before,
.theme-professional-teal .social-underline,
.theme-professional-teal .bank-underline,
.theme-professional-teal .main-nav button.active,
.theme-professional-teal .main-nav button:hover {
  background: linear-gradient(135deg, #38b2ac, #319795);
}

.theme-classic-indigo .profile-card::before,
.theme-classic-indigo section h3::before,
.theme-classic-indigo .social-underline,
.theme-classic-indigo .bank-underline,
.theme-classic-indigo .main-nav button.active,
.theme-classic-indigo .main-nav button:hover {
  background: linear-gradient(135deg, #5a67d8, #4c51bf);
}

.theme-warm-amber .profile-card::before,
.theme-warm-amber section h3::before,
.theme-warm-amber .social-underline,
.theme-warm-amber .bank-underline,
.theme-warm-amber .main-nav button.active,
.theme-warm-amber .main-nav button:hover {
  background: linear-gradient(135deg, #f6ad55, #ed8936);
}

.theme-luxury-emerald .profile-card::before,
.theme-luxury-emerald section h3::before,
.theme-luxury-emerald .social-underline,
.theme-luxury-emerald .bank-underline,
.theme-luxury-emerald .main-nav button.active,
.theme-luxury-emerald .main-nav button:hover {
  background: linear-gradient(135deg, #10b981, #059669);
}

/* ========== RESPONSIVE TEMA SEÇİCİ ========== */

@media (max-width: 1200px) {
  .theme-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }

  .theme-preview {
    width: 35px;
    height: 35px;
  }

  .theme-option span {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .theme-selector {
    min-width: 280px;
    padding: 16px;
  }

  .theme-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .theme-preview {
    width: 30px;
    height: 30px;
  }

  .theme-option span {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .theme-selector {
    min-width: 100%;
    margin-top: 16px;
  }

  .theme-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }

  .theme-preview {
    width: 25px;
    height: 25px;
  }

  .theme-option span {
    font-size: 8px;
  }

  /* Çok küçük ekranlar için profil kartı düzeltmesi */
  .profile-card h1 {
    font-size: 1.5rem;
    line-height: 1.1;
    padding: 0 5px;
  }

  .profile-card h2 {
    font-size: 0.9rem;
    line-height: 1.2;
    padding: 0 5px;
  }
}

/* ========== MOBİL RESPONSİVE DÜZELTMELERİ ========== */
@media (max-width: 768px) {
  /* Container düzeltmesi */
  .main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  /* Profil kartı mobil düzeltmesi */
  .profile-card {
    padding: 30px 20px 25px 20px;
    margin-bottom: 20px;
  }

  /* Profil kartı başlık mobil düzeltmesi */
  .profile-card h1 {
    font-size: 1.8rem;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    padding: 0 10px;
  }

  .profile-card h2 {
    font-size: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    padding: 0 10px;
  }

  /* Action buttons düzeltmesi */
  .action-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .action-btn {
    padding: 16px 20px;
    font-size: 1rem;
  }

  /* Section kartları mobil düzeltmesi */
  .section-tab {
    margin-bottom: 20px;
    padding: 20px 16px;
  }

  /* Company grid mobil düzeltmesi */
  .company-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Social grid mobil düzeltmesi */
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 12px;
    max-width: 100%;
    overflow: hidden;
  }

  .social-item {
    padding: 18px 8px 12px 8px;
    max-width: 100%;
    overflow: hidden;
  }

  .social-item i {
    font-size: 2.2rem;
  }

  /* Bank grid mobil düzeltmesi */
  .bank-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
    overflow: hidden;
  }

  /* Store ve listing grid düzeltmesi */
  .stores-grid,
  .listings-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Documents grid düzeltmesi */
  .documents-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Services grid düzeltmesi */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* Navigation düzeltmesi */
  .main-nav {
    gap: 8px;
    padding: 16px 12px 12px 12px;
    flex-wrap: nowrap; /* Tek satırda kalsın */
  }

  .main-nav button {
    padding: 8px 10px;
    font-size: 0.85rem;
    min-width: 48px;
    min-height: 48px;
    flex: 0 1 48px; /* Genişlik küçülerek tek satırda kalsın */
  }
}

@media (max-width: 480px) {
  /* Çok küçük ekranlar için ek düzeltmeler */
  .container {
    padding: 10px;
  }

  .profile-card {
    padding: 25px 15px 20px 15px;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
    max-width: 100%;
    overflow: hidden;
  }

  .bank-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
    overflow: hidden;
  }

  .main-nav {
    flex-wrap: nowrap; /* Asla alt satıra geçmesin */
    gap: 6px;
    padding: 12px 8px 8px 8px;
  }

  .main-nav button {
    padding: 6px 8px;
    font-size: 0.8rem;
    min-width: 44px;
    min-height: 44px;
    flex: 0 1 44px; /* Butonlar küçülerek yan yana kalsın */
  }
}
