/* HostShop — düzen, hosting tarzı vurgular, okunabilir hiyerarşi */

.card-product {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
}

.hero-gradient {
  background: linear-gradient(135deg, #0d6efd 0%, #6610f2 50%, #0dcaf0 100%);
}

/* ——— Vitrin (ana sayfa + genel tipografi) ——— */
.storefront-body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Ana sayfa */
.home-page {
  padding-bottom: 0.5rem;
}

.home-hero {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(125deg, #0c1222 0%, #152a52 42%, #1e1b4b 78%, #134e4a 100%);
  box-shadow: 0 1.25rem 3rem rgba(15, 23, 42, 0.35);
}

.home-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 10% -30%, rgba(56, 189, 248, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 0%, rgba(167, 139, 250, 0.28), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 120%, rgba(34, 211, 238, 0.12), transparent 45%);
}

.home-hero__inner {
  padding: 2.5rem 1.75rem;
}

@media (min-width: 768px) {
  .home-hero__inner {
    padding: 3rem 2.5rem;
  }
}

.home-hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55) !important;
}

.home-hero__title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.home-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.88;
  max-width: 36rem;
}

.home-hero__btn {
  border-radius: 0.65rem !important;
  font-weight: 600;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.home-hero__btn--primary {
  background: #fff !important;
  color: #152a52 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.home-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  color: #0f172a !important;
}

.home-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.home-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
}

.home-hero__panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.1rem;
  padding: 1.5rem 1.35rem;
}

.home-hero__panel-title {
  letter-spacing: 0.08em;
}

.home-hero__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: homehero;
}

.home-hero__step {
  position: relative;
  padding-left: 2.35rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.92;
}

.home-hero__step::before {
  counter-increment: homehero;
  content: counter(homehero);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.45rem;
  background: rgba(56, 189, 248, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0f2fe;
}

.home-section__head {
  max-width: 40rem;
}

.home-section__title {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.home-section__lead {
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.home-feature-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.1rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(102, 16, 242, 0.1));
}

.home-feature-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: #1e293b;
}

.home-feature-card__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
}

.home-carousel {
  border-radius: 1rem;
}

.home-carousel__img {
  max-height: 400px;
  object-fit: cover;
  min-height: 220px;
}

.home-carousel__caption {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88), transparent);
}

.home-carousel__caption-inner {
  max-width: 32rem;
}

.home-carousel__caption-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.home-carousel__indicators {
  margin-bottom: 0.5rem;
}

.home-carousel__indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.45;
}

.home-carousel__indicators .active {
  opacity: 1;
  transform: scale(1.15);
}

.home-carousel__ctrl {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92) !important;
  opacity: 0.9;
}

.home-product-card {
  position: relative;
  border-radius: 1rem !important;
  background: #fff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  overflow: hidden;
}

.home-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0d6efd, #6610f2, #0dcaf0);
  opacity: 0.85;
}

.home-product-card:hover {
  box-shadow: 0 14px 40px rgba(13, 110, 253, 0.12);
  transform: translateY(-3px);
}

.home-product-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35em 0.65em;
  border-radius: 0.35rem;
  background: rgba(13, 110, 253, 0.1);
  color: var(--bs-primary);
  margin-bottom: 0.75rem;
}

.home-product-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.home-product-card__desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
}

.home-product-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.home-product-card__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bs-primary);
}

.home-product-card__currency {
  font-size: 0.85em;
  font-weight: 600;
}

.home-product-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bs-primary) !important;
}

.home-steps-wrap {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
}

.home-step {
  position: relative;
  padding: 1.25rem 1rem 1.25rem 3.25rem;
  background: #fff;
  border-radius: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  height: 100%;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.home-step__num {
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.35);
}

.home-step__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1e293b;
}

.home-step__text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #64748b;
}

.home-blog-card {
  border-radius: 1rem !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-blog-card:hover {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1) !important;
  transform: translateY(-2px);
}

.home-blog-card__date {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.home-blog-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0.5rem 0 0.75rem;
}

.home-blog-card__excerpt {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
}

.home-blog-card__more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bs-primary);
}

.home-cta-final__inner {
  background: linear-gradient(125deg, #0f172a 0%, #1e3a5f 50%, #312e81 100%);
  box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.3);
  position: relative;
  overflow: hidden;
}

.home-cta-final__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(56, 189, 248, 0.2), transparent 55%);
  pointer-events: none;
}

.home-cta-final__title,
.home-cta-final__text {
  position: relative;
  z-index: 1;
}

.home-cta-final__text {
  max-width: 28rem;
  opacity: 0.9;
}

.home-cta-final .home-hero__btn {
  position: relative;
  z-index: 1;
}

[data-bs-theme="dark"] .home-section__title {
  color: var(--bs-body-color);
}

[data-bs-theme="dark"] .home-feature-card,
[data-bs-theme="dark"] .home-product-card,
[data-bs-theme="dark"] .home-step {
  background: var(--bs-body-bg);
  border-color: var(--bs-border-color) !important;
}

[data-bs-theme="dark"] .home-steps-wrap {
  background: var(--bs-secondary-bg);
}

/* Ana sayfa — genişletilmiş bloklar */
.home-hero__badges {
  max-width: 36rem;
}

.home-hero__pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4em 0.75em;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
}

.home-hero__dashboard {
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-hero__dash-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.home-hero__dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.35);
  animation: homePulse 2.5s ease-in-out infinite;
}

@keyframes homePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__dash-dot {
    animation: none;
  }
  .admin-content-fade {
    animation: none;
  }
}

.home-hero__dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

.home-hero__dash-row:last-of-type {
  border-bottom: none;
}

.home-hero__dash-row strong {
  color: #e0f2fe;
  font-weight: 600;
}

.home-hero__dash-bar-label {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.35rem;
}

.home-hero__dash-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.home-hero__dash-bar span {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #38bdf8, #818cf8);
}

.home-stats-strip__inner {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
}

.home-stats-strip__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.home-stats-strip__lead {
  max-width: 36rem;
}

.home-stat-item__value {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.home-stat-item__label {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
  max-width: 12rem;
  margin: 0 auto;
}

.home-stats-strip__note {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.home-tech-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5em 1em;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #475569;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.home-tech-pill:hover {
  border-color: rgba(13, 110, 253, 0.35);
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.1);
}

.home-service-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1.35rem;
  height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.09);
}

.home-service-card__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.home-service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: #0f172a;
}

.home-service-card__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
}

.home-infra__wrap {
  background: linear-gradient(145deg, #f0f4ff 0%, #fff 45%, #f8fafc 100%);
  border: 1px solid rgba(99, 102, 241, 0.12);
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.08);
}

.home-infra__item {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.875rem;
  line-height: 1.5;
  color: #334155;
  height: 100%;
}

.home-infra__check {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(102, 16, 242, 0.1));
  color: #0d6efd;
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-quote-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  position: relative;
}

.home-quote-card::before {
  content: "“";
  position: absolute;
  top: 0.65rem;
  left: 1rem;
  font-size: 3rem;
  line-height: 1;
  color: rgba(13, 110, 253, 0.12);
  font-family: Georgia, serif;
  pointer-events: none;
}

.home-quote-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 1.25rem;
  padding-top: 0.25rem;
  position: relative;
  z-index: 1;
}

.home-quote-card__footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 1rem;
  font-size: 0.875rem;
}

.home-faq {
  max-width: 720px;
}

.home-faq__item .accordion-button {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  box-shadow: none !important;
}

.home-faq__item .accordion-button:not(.collapsed) {
  background: rgba(13, 110, 253, 0.06);
  color: #0d6efd;
}

.home-faq__item .accordion-body {
  line-height: 1.65;
  padding-top: 0;
}

.home-prefooter__inner {
  background: linear-gradient(125deg, #f8fafc 0%, #eef2ff 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 6px 28px rgba(15, 23, 42, 0.06);
}

.home-prefooter__title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.home-prefooter__lead {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 36rem;
}

[data-bs-theme="dark"] .home-stats-strip__inner,
[data-bs-theme="dark"] .home-service-card,
[data-bs-theme="dark"] .home-quote-card,
[data-bs-theme="dark"] .home-infra__item,
[data-bs-theme="dark"] .home-tech-pill {
  background: var(--bs-body-bg);
  border-color: var(--bs-border-color);
  color: var(--bs-body-color);
}

[data-bs-theme="dark"] .home-stats-strip__title,
[data-bs-theme="dark"] .home-prefooter__title,
[data-bs-theme="dark"] .home-service-card__title {
  color: var(--bs-body-color);
}

[data-bs-theme="dark"] .home-infra__wrap,
[data-bs-theme="dark"] .home-prefooter__inner {
  background: var(--bs-secondary-bg);
  border-color: var(--bs-border-color);
}

[data-bs-theme="dark"] .home-stat-item__value {
  background: none;
  -webkit-text-fill-color: unset;
  color: var(--bs-primary);
}

/* ——— Admin panel (layout + tema) ——— */
.admin-html.admin-body,
.admin-body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.admin-app {
  display: flex;
  min-height: 100vh;
  align-items: stretch;
  position: relative;
}

.admin-sidebar-backdrop {
  display: none;
}

.btn-icon-close {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  line-height: 1;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.45rem;
}

.btn-icon-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.admin-mobile-toolbar {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  margin: -0.25rem -1rem 1rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgba(41, 61, 120, 0.08);
  position: sticky;
  top: 0.5rem;
  z-index: 1020;
}

.admin-mobile-toolbar-title {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.admin-menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  border: 1px solid rgba(91, 124, 250, 0.35);
  background: rgba(91, 124, 250, 0.08);
  color: #3d56c4;
}

.admin-menu-toggle:hover {
  background: rgba(91, 124, 250, 0.16);
  border-color: rgba(91, 124, 250, 0.5);
  color: #2a3d9e;
}

.admin-menu-bars {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.admin-sidebar-shell {
  width: 280px;
  flex-shrink: 0;
  background: linear-gradient(175deg, #1e2433 0%, #151922 48%, #0f1117 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}

.admin-sidebar-brand {
  padding: 1.35rem 1.25rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, #4f7cff 0%, #3557c9 100%);
  box-shadow: 0 4px 14px rgba(79, 124, 255, 0.35);
}

.admin-brand-mark--lg {
  width: 3.25rem;
  height: 3.25rem;
  font-size: 1.35rem;
  border-radius: 0.85rem;
}

.admin-brand-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.admin-brand-tagline {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.15rem;
}

.admin-sidebar-scroll {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.admin-sidebar-hr {
  border-color: rgba(255, 255, 255, 0.08) !important;
  opacity: 1;
}

.admin-nav-groups .nav-group-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 600;
}

.admin-nav-subgroup {
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.35rem;
  margin-top: 0.15rem;
}

.admin-nav-link {
  color: rgba(255, 255, 255, 0.62) !important;
  border-radius: 0.5rem;
  padding: 0.45rem 0.65rem !important;
  margin-bottom: 0.15rem;
  font-weight: 500;
  font-size: 0.8125rem;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
}

.admin-nav-link.active {
  background: linear-gradient(90deg, rgba(79, 124, 255, 0.22) 0%, rgba(79, 124, 255, 0.06) 100%) !important;
  color: #fff !important;
  box-shadow: inset 3px 0 0 #6e9cff;
}

.admin-nav-link--danger {
  color: rgba(255, 180, 120, 0.95) !important;
}
.admin-nav-link--danger:hover {
  background: rgba(220, 53, 69, 0.15) !important;
  color: #ffb4b4 !important;
}

.admin-nav-link--muted {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.78rem !important;
}

.admin-main-area {
  background-color: #eef1f7;
  background-image: radial-gradient(rgba(99, 123, 169, 0.09) 1px, transparent 1px);
  background-size: 20px 20px;
}

.admin-main-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.75rem 1.75rem 2.5rem;
  width: 100%;
}

@media (min-width: 1400px) {
  .admin-main-inner {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}

.admin-user-strip {
  border-radius: 0.75rem !important;
  background: #fff !important;
}

.admin-user-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, #5b7cfa 0%, #3d56c4 100%);
  flex-shrink: 0;
}

.admin-badge-role {
  background: rgba(91, 124, 250, 0.12) !important;
  color: #3d56c4 !important;
  font-weight: 600;
  padding: 0.35em 0.75em;
}

.admin-page-header {
  padding-bottom: 0.25rem;
}

.admin-page-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1d26;
}

.admin-page-lead {
  font-size: 0.9375rem;
  max-width: 42rem;
}

.admin-content-fade {
  animation: adminFadeIn 0.35s ease-out;
}

@keyframes adminFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.admin-topbar {
  border-radius: 0.75rem !important;
  background: #fff !important;
}

.admin-topbar-btn {
  border-radius: 0.45rem !important;
  font-weight: 500;
  font-size: 0.8125rem;
  border: 1px solid rgba(91, 124, 250, 0.35) !important;
  color: #3d56c4 !important;
  background: rgba(91, 124, 250, 0.06);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.admin-topbar-btn:hover {
  background: rgba(91, 124, 250, 0.14) !important;
  border-color: rgba(91, 124, 250, 0.55) !important;
  color: #2a3d9e !important;
}

.admin-topbar-btn--soft {
  border-color: rgba(108, 117, 125, 0.35) !important;
  color: #5c636a !important;
  background: rgba(108, 117, 125, 0.06);
}

.admin-topbar-btn--soft:hover {
  background: rgba(108, 117, 125, 0.12) !important;
  color: #41464b !important;
}

.admin-main-inner .card {
  border-radius: 0.75rem;
}

.admin-main-inner .table {
  --bs-table-bg: transparent;
}

.admin-main-inner .table thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #6c757d;
  border-bottom-width: 1px;
}

.admin-kpi-card {
  border-radius: 0.75rem !important;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.admin-kpi-card:hover {
  box-shadow: 0 0.5rem 1.25rem rgba(41, 61, 120, 0.12) !important;
  transform: translateY(-2px);
}

/* Admin giriş (misafir layout) */
.admin-login-body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  position: relative;
  overflow-x: hidden;
}

.admin-login-backdrop {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(79, 124, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 100%, rgba(102, 16, 242, 0.2), transparent 45%),
    linear-gradient(165deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
  z-index: 0;
}

.admin-login-container {
  max-width: 420px;
  z-index: 1;
}

.admin-login-card {
  background: rgba(22, 27, 34, 0.88) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 1rem !important;
}

.admin-login-input {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border-radius: 0.55rem !important;
}

.admin-login-input:focus {
  border-color: rgba(79, 124, 255, 0.55) !important;
  box-shadow: 0 0 0 0.2rem rgba(79, 124, 255, 0.2) !important;
}

.admin-login-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.admin-login-submit {
  border-radius: 0.55rem !important;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  background: linear-gradient(135deg, #4f7cff 0%, #3557c9 100%) !important;
  border: none !important;
}

.admin-login-submit:hover {
  filter: brightness(1.06);
}

/* Eski sınıf adları (geriye uyum) */
.admin-sidebar {
  min-height: 100vh;
  max-height: 100vh;
}

.admin-main {
  max-width: 100%;
}

@media (max-width: 991.98px) {
  body.admin-sidebar-open {
    overflow: hidden;
  }

  .admin-app {
    display: block;
  }

  .admin-sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(15, 18, 28, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  body.admin-sidebar-open .admin-sidebar-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .admin-sidebar-shell {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    height: 100dvh;
    width: min(288px, 88vw);
    max-width: 100%;
    z-index: 1050;
    transform: translateX(-102%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.35);
  }

  body.admin-sidebar-open .admin-sidebar-shell {
    transform: translateX(0);
  }

  .admin-mobile-toolbar {
    display: flex;
  }

  .admin-main-area {
    width: 100%;
    min-height: 100vh;
  }

  .admin-main-inner {
    padding: 1rem 1rem 2rem;
  }
}

.letter-spacing-1 {
  letter-spacing: 0.04em;
}

.footer-main a.link-secondary:hover {
  color: var(--bs-primary) !important;
}

.page-header .lead {
  font-size: 0.95rem;
  line-height: 1.5;
}

.account-subnav .nav-pills .nav-link {
  color: var(--bs-body-color);
  border-radius: 0.5rem;
}
.account-subnav .nav-pills .nav-link:hover {
  background: var(--bs-primary-bg-subtle);
  color: var(--bs-primary);
}
.account-subnav .nav-pills .nav-link.active {
  background: var(--bs-primary);
  color: #fff;
}

.checkout-progress .rounded-3 {
  min-height: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: var(--bs-primary-bg-subtle);
  color: var(--bs-primary);
}

.prose {
  line-height: 1.7;
}
.prose p:last-child {
  margin-bottom: 0;
}

[data-bs-theme="dark"] .account-subnav .nav-pills .nav-link {
  color: var(--bs-body-color);
}

/* Müşteri paneli (sol menü + özet) */
.account-welcome-gradient {
  background: linear-gradient(125deg, #0d6efd 0%, #0a58ca 45%, #6610f2 100%);
}

.account-stat-card {
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.account-stat-card:hover {
  box-shadow: 0 0.35rem 1rem rgba(13, 110, 253, 0.12) !important;
}

.account-panel-sidebar .account-side-nav .list-group-item {
  border-radius: 0.35rem;
  margin-bottom: 0.2rem;
}
.account-panel-sidebar .account-side-nav .list-group-item:hover {
  background: var(--bs-primary-bg-subtle);
}
.account-panel-sidebar .account-side-nav .list-group-item.active {
  background: var(--bs-primary);
  color: #fff;
}
.account-panel-sidebar .account-side-nav .list-group-item.active .account-side-hint {
  color: rgba(255, 255, 255, 0.78);
}

.whois-raw-pre {
  max-height: 28rem;
  overflow: auto;
  font-size: 0.75rem;
  padding: 1rem;
  background: var(--bs-tertiary-bg);
  border-top: 1px solid var(--bs-border-color);
  white-space: pre-wrap;
  word-break: break-word;
}

.whois-dl dt {
  font-weight: 500;
}

@media print {
  .no-print,
  .navbar,
  .footer-main,
  .account-panel-sidebar-col,
  .breadcrumb,
  .page-header {
    display: none !important;
  }
  .account-panel-main-col,
  .col-lg-9 {
    width: 100% !important;
    max-width: 100% !important;
  }
  .account-invoice-print {
    border: none !important;
    box-shadow: none !important;
  }
}
