/* =========================
   DUŞ MASTER - GENEL AYARLAR
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;

  background-image:
    linear-gradient(rgba(7, 15, 20, 0.68), rgba(7, 15, 20, 0.68)),
    url("../images/Dus-master-pc-arka-plan.webp");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  width: 100%;
  min-height: 80px;
  padding: 0 60px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5edf3;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo h1 {
  font-size: 26px;
  color: #101820;
  letter-spacing: -0.5px;
}

.logo p {
  font-size: 12px;
  color: #2da8d8;
  font-weight: bold;
  letter-spacing: 0.5px;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  color: #1d252d;
  font-weight: bold;
  font-size: 15px;
  transition: 0.2s ease;
}

nav a:hover,
nav a.active {
  color: #2da8d8;
}

/* =========================
   BUTONLAR
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 15px;
  transition: 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: #2da8d8;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(45, 168, 216, 0.25);
}

.primary:hover {
  background: #1688b4;
}

.secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.dark-btn {
  background: #101820;
  color: #ffffff;
}

.dark-btn:hover {
  background: #243241;
}

/* =========================
   ANA SAYFA HERO
========================= */

.hero {
  min-height: calc(100vh - 80px);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  background:
    radial-gradient(circle at top right, rgba(45, 168, 216, 0.35), transparent 30%),
    linear-gradient(135deg, #101820, #22313f);
}

.hero-text span {
  color: #66d9ff;
  font-weight: bold;
}

.hero-text h2 {
  margin-top: 20px;
  font-size: 58px;
  line-height: 1.05;
  color: #ffffff;
  max-width: 720px;
  letter-spacing: -1.5px;
}

.hero-text p {
  margin-top: 25px;
  color: #d7e7ef;
  font-size: 18px;
  max-width: 620px;
  line-height: 1.7;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 35px;
  border-radius: 25px;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.hero-box h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero-box p {
  color: #d7e7ef;
  line-height: 1.7;
}

/* =========================
   ANA SAYFA MODEL ÖN İZLEME
========================= */

.home-models {
  padding: 90px 60px;
  background: #f5f8fb;
}

.section-title {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-title span {
  color: #2da8d8;
  font-weight: bold;
}

.section-title h2 {
  margin-top: 10px;
  font-size: 42px;
  line-height: 1.15;
  color: #101820;
  letter-spacing: -0.8px;
}

.section-title p {
  margin-top: 12px;
  color: #5d6b78;
  font-size: 17px;
}

.model-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.model-preview-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(16, 24, 32, 0.08);
  transition: 0.2s ease;
}

.model-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(16, 24, 32, 0.13);
}

.model-img {
  height: 230px;
  background:
    linear-gradient(135deg, rgba(45, 168, 216, 0.18), rgba(255, 255, 255, 0.9)),
    linear-gradient(120deg, #dcecf5, #ffffff);
}

.model-img.dark {
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.9), rgba(45, 168, 216, 0.55)),
    linear-gradient(120deg, #101820, #22313f);
}

.model-img.blue {
  background:
    linear-gradient(135deg, #bfeaff, #ffffff);
}

.model-preview-card h3 {
  padding: 22px 22px 5px;
  font-size: 22px;
  color: #101820;
}

.model-preview-card p {
  padding: 0 22px 24px;
  color: #5d6b78;
}

.center-button {
  margin-top: 35px;
  text-align: center;
}

/* =========================
   GENEL SAYFA BAŞLIĞI
   Modeller / Hizmetler / Parçalar sayfalarında kullanacağız
========================= */

.page-hero {
  padding: 90px 60px;
  background:
    radial-gradient(circle at top right, rgba(45, 168, 216, 0.28), transparent 30%),
    linear-gradient(135deg, #101820, #22313f);
  color: #ffffff;
}

.page-hero span {
  color: #66d9ff;
  font-weight: bold;
}

.page-hero h2 {
  margin-top: 15px;
  font-size: 48px;
  line-height: 1.15;
  max-width: 800px;
}

.page-hero p {
  margin-top: 18px;
  color: #d7e7ef;
  max-width: 650px;
  font-size: 18px;
}

/* =========================
   GENEL GRID / KART YAPISI
========================= */

.page-section {
  padding: 80px 60px;
  background: #f5f8fb;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.info-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(16, 24, 32, 0.08);
  transition: 0.2s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  font-size: 23px;
  color: #101820;
  margin-bottom: 10px;
}

.info-card p {
  color: #5d6b78;
}

/* =========================
   PARÇA KARTLARI
========================= */

.parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.part-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(16, 24, 32, 0.08);
}

.part-image {
  height: 180px;
  background:
    linear-gradient(135deg, #dcecf5, #ffffff);
}

.part-content {
  padding: 20px;
}

.part-content h3 {
  font-size: 20px;
  color: #101820;
  margin-bottom: 8px;
}

.part-price {
  font-size: 22px;
  font-weight: bold;
  color: #2da8d8;
  margin-bottom: 10px;
}

.stock {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: bold;
}

.in-stock {
  background: #e4f8ed;
  color: #138a45;
}

.out-stock {
  background: #ffe8e8;
  color: #c73232;
}

/* =========================
   FORM TASARIMI
========================= */

.form-wrapper {
  max-width: 780px;
  background: #ffffff;
  border-radius: 26px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(16, 24, 32, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #ccd9e3;
  border-radius: 14px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2da8d8;
  box-shadow: 0 0 0 4px rgba(45, 168, 216, 0.12);
}

/* =========================
   İLETİŞİM SAYFASI
========================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #101820;
  color: #ffffff;
  text-align: center;
  padding: 25px;
}

/* =========================
   RESPONSIVE / MOBİL UYUM
========================= */

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

  .model-preview-grid,
  .card-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .parts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text h2 {
    font-size: 46px;
  }
}

@media (max-width: 750px) {
  .navbar {
    padding: 18px 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  nav a {
    font-size: 14px;
    background: #f5f8fb;
    padding: 8px 12px;
    border-radius: 30px;
  }

  .hero {
    min-height: auto;
    padding: 65px 25px;
  }

  .hero-text h2 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-box {
    padding: 25px;
  }

  .home-models,
  .page-section,
  .page-hero {
    padding: 65px 25px;
  }

  .section-title h2,
  .page-hero h2 {
    font-size: 34px;
  }

  .parts-grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 24px;
  }
}
.white-section {
  background: #ffffff;
}
.part-image {
  height: 190px;
  background: linear-gradient(135deg, #dcecf5, #ffffff);
  overflow: hidden;
}

.part-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.add-part-btn {
  width: 100%;
  margin-top: 16px;
}

.add-part-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.part-card {
  transition: 0.2s ease;
}

.part-card:hover {
  transform: translateY(-5px);
}

.part-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.part-content .btn {
  align-self: stretch;
}
.quote-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.form-title,
.selected-title {
  margin-bottom: 25px;
}

.form-title h2,
.selected-title h2 {
  font-size: 32px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

.selected-parts-box {
  background: #ffffff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(16, 24, 32, 0.08);
}

.selected-parts-list {
  display: grid;
  gap: 15px;
}

.empty-parts {
  background: #f5f8fb;
  border: 1px dashed #ccd9e3;
  border-radius: 18px;
  padding: 22px;
  color: #5d6b78;
}

.selected-part-item {
  border: 1px solid #e5edf3;
  border-radius: 18px;
  padding: 16px;
  background: #f8fbfd;
}

.selected-part-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 12px;
}

.selected-part-top h3 {
  font-size: 18px;
  color: #101820;
}

.selected-part-top strong {
  color: #2da8d8;
  white-space: nowrap;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn,
.remove-part-btn,
.clear-btn {
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #101820;
  color: #ffffff;
  font-size: 18px;
}

.quantity-number {
  min-width: 26px;
  text-align: center;
  font-weight: bold;
  color: #101820;
}

.remove-part-btn {
  color: #c73232;
  background: transparent;
}

.parts-total-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: #101820;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.parts-total-box span {
  color: #d7e7ef;
}

.parts-total-box strong {
  font-size: 26px;
}

.selected-actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.clear-btn {
  background: #ffe8e8;
  color: #c73232;
}

@media (max-width: 1000px) {
  .quote-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .selected-actions {
    grid-template-columns: 1fr;
  }

  .selected-part-top,
  .quantity-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact-info-box,
.contact-parts-box {
  background: #ffffff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 15px 35px rgba(16, 24, 32, 0.08);
}

.contact-title {
  margin-bottom: 25px;
}

.contact-title h2 {
  font-size: 34px;
}

.contact-card {
  background: #f5f8fb;
  border: 1px solid #e5edf3;
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 16px;
}

.contact-card h3 {
  color: #101820;
  font-size: 21px;
  margin-bottom: 8px;
}

.contact-card p {
  color: #5d6b78;
}

.contact-btn {
  margin-top: 15px;
}

.mini-parts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mini-part-card {
  background: #f8fbfd;
  border: 1px solid #e5edf3;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.2s ease;
}

.mini-part-card:hover {
  transform: translateY(-4px);
}

.mini-part-image {
  height: 150px;
  background: linear-gradient(135deg, #dcecf5, #ffffff);
  overflow: hidden;
}

.mini-part-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-part-content {
  padding: 18px;
}

.mini-part-content h3 {
  color: #101820;
  font-size: 18px;
  margin-bottom: 8px;
}

.mini-part-content .part-price {
  margin-bottom: 8px;
}

.mini-part-content .add-part-btn {
  margin-top: 14px;
}

.contact-more-btn {
  margin-top: 25px;
}

@media (max-width: 700px) {
  .contact-info-box,
  .contact-parts-box {
    padding: 24px;
  }

  .mini-parts-grid {
    grid-template-columns: 1fr;
  }
}
.stock-management-box {
  background: #ffffff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 15px 35px rgba(16, 24, 32, 0.08);
}

.stock-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid #e5edf3;
}

.stock-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: #ffffff;
}

.stock-table th,
.stock-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e5edf3;
}

.stock-table th {
  background: #f5f8fb;
  color: #101820;
  font-size: 15px;
}

.stock-table td {
  color: #1d252d;
  vertical-align: middle;
}

.stock-thumb {
  width: 80px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f8fb;
}

.stock-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock-price-input,
.stock-status-select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #ccd9e3;
  border-radius: 12px;
  font: inherit;
  outline: none;
}

.stock-price-input:focus,
.stock-status-select:focus {
  border-color: #2da8d8;
  box-shadow: 0 0 0 4px rgba(45, 168, 216, 0.12);
}

.stock-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stock-note {
  margin-top: 18px;
  color: #5d6b78;
  background: #f5f8fb;
  border: 1px dashed #ccd9e3;
  padding: 16px;
  border-radius: 16px;
}

@media (max-width: 700px) {
  .stock-management-box {
    padding: 24px;
  }
}
.admin-nav-link {
  display: none;
}

.admin-nav-link.show,
.admin-nav-link.stock-page-nav {
  display: inline-flex;
}

.admin-login-box {
  max-width: 520px;
  background: #ffffff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 15px 35px rgba(16, 24, 32, 0.08);
}

.admin-panel-content {
  display: none;
}

.login-error {
  display: none;
  margin-top: 15px;
  color: #c73232;
  background: #ffe8e8;
  padding: 13px 15px;
  border-radius: 14px;
  font-weight: bold;
}

.login-error.show {
  display: block;
}
.hero-image-card {
  height: 430px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-real-image {
  height: 260px;
  overflow: hidden;
  background: #dcecf5;
}

.model-real-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-preview-card p {
  min-height: 88px;
}

@media (max-width: 750px) {
  .hero-image-card {
    height: 300px;
  }

  .model-real-image {
    height: 230px;
  }
}
/* =========================
   GALERİ SAYFASI
========================= */

.gallery-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.gallery-filter-btn {
  border: none;
  background: #ffffff;
  color: #101820;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(16, 24, 32, 0.08);
  transition: 0.2s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: #2da8d8;
  color: #ffffff;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background: #dcecf5;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(16, 24, 32, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(16, 24, 32, 0.88), transparent);
  color: #ffffff;
}

.gallery-card-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.gallery-card-info p {
  font-size: 13px;
  color: #d7e7ef;
}

/* =========================
   GÖRSEL BÜYÜTME / LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 14, 0.92);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.show {
  display: flex;
}

.lightbox-content {
  max-width: 1050px;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-content p {
  margin-top: 14px;
  color: #ffffff;
  font-weight: bold;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #101820;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  font-weight: bold;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #101820;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  font-weight: bold;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

@media (max-width: 1100px) {
  .gallery-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card {
    height: 220px;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}

@media (max-width: 520px) {
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-filter-buttons {
    gap: 8px;
  }

  .gallery-filter-btn {
    padding: 10px 13px;
    font-size: 13px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}
.model-real-image {
  position: relative;
  cursor: pointer;
}

.model-real-image::after {
  content: "Büyütmek için tıkla";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(16, 24, 32, 0.78);
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.model-real-image:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.model-bottom-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.more-models-btn {
  margin-left: 0;
}
/* =========================
   LOGO LINK + MOBİL MENÜ
========================= */

.logo {
  text-decoration: none;
  display: block;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: #101820;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Tablet ve telefon uyumu */
@media (max-width: 950px) {
  .navbar {
    padding: 16px 22px;
    min-height: auto;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .main-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 15px 35px rgba(16, 24, 32, 0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #f5f8fb;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 15px;
  }

  .main-nav a.active {
    background: #2da8d8;
    color: #ffffff;
  }
}

@media (max-width: 520px) {
  .logo h1 {
    font-size: 23px;
  }

  .logo p {
    font-size: 11px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
}
/* =========================
   MOBİL MENÜ ANİMASYON DÜZELTMESİ
========================= */

.menu-toggle {
  position: relative;
  overflow: hidden;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 10px;
  display: block;
  transition: 0.25s ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateX(4px);
}

.menu-toggle.active span:nth-child(2) {
  transform: translateX(-3px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateX(4px);
}

@media (max-width: 950px) {
  .main-nav {
    display: flex !important;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, padding 0.25s ease;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: none;
  }

  .main-nav.open {
    max-height: 650px;
    opacity: 1;
    transform: translateY(0);
    padding: 14px;
    pointer-events: auto;
  }

  .main-nav .admin-nav-link,
  .main-nav .admin-nav-link.show,
  .main-nav .admin-nav-link.stock-page-nav {
    display: none !important;
  }
}
/* =========================
   HAMBURGER MENÜ SON DÜZELTME
========================= */

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: #101820;
  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  padding: 0;
  overflow: visible;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 20px;
  margin: 0 !important;
  transition: 0.25s ease;
  transform: none;
  opacity: 1;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateX(4px) !important;
}

.menu-toggle.active span:nth-child(2) {
  transform: translateX(-3px) !important;
  opacity: 1 !important;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateX(4px) !important;
}

@media (max-width: 950px) {
  .menu-toggle {
    display: flex !important;
  }
}
/* =========================
   TEKLİF SAYFASI MOBİL / PROFESYONEL DÜZEN
========================= */

.offer-page-section {
  background: linear-gradient(180deg, #f5f8fb, #ffffff);
}

.offer-top-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.offer-info-card {
  background: #ffffff;
  border: 1px solid #e5edf3;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.07);
}

.offer-info-card strong {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2da8d8;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.offer-info-card span {
  font-weight: bold;
  color: #101820;
}

.offer-form-card {
  max-width: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.offer-form-note {
  background: #f5f8fb;
  border: 1px dashed #ccd9e3;
  border-radius: 16px;
  padding: 14px 16px;
  color: #5d6b78;
  margin-bottom: 18px;
}

.offer-form-note strong {
  color: #101820;
}

.offer-summary-card {
  position: sticky;
  top: 100px;
}

.gallery-help-link {
  display: block;
  margin-top: 18px;
  text-align: center;
  color: #2da8d8;
  font-weight: bold;
}

.gallery-help-link:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .offer-top-info {
    grid-template-columns: 1fr;
  }

  .offer-summary-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .offer-top-info {
    gap: 12px;
    margin-bottom: 22px;
  }

  .offer-info-card {
    padding: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-title h2,
  .selected-title h2 {
    font-size: 28px;
  }

  .offer-form-card,
  .offer-summary-card {
    border-radius: 22px;
  }

  .form-submit-btn {
    min-height: 54px;
    font-size: 16px;
  }
}
/* =========================
   TEKLİF SAYFASI UYARI BALONU
========================= */

.offer-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  background: #ffffff;
  border: 1px solid #e5edf3;
  border-radius: 20px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 45px rgba(16, 24, 32, 0.18);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: 0.25s ease;
}

.offer-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.offer-toast-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2da8d8;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 20px;
}

.offer-toast strong {
  color: #101820;
  display: block;
  margin-bottom: 2px;
}

.offer-toast p {
  color: #5d6b78;
  font-size: 14px;
}

@media (max-width: 700px) {
  .offer-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
/* =========================
   FORM HATA UYARISI
========================= */

.form-error-box {
  display: none;
  background: #ffe8e8;
  color: #c73232;
  border: 1px solid #ffc4c4;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: bold;
  margin-bottom: 18px;
}

.form-error-box.show {
  display: block;
}

.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
  border-color: #c73232;
  box-shadow: 0 0 0 4px rgba(199, 50, 50, 0.12);
}
.hero-image-card,
.model-real-image {
  cursor: pointer;
}

.hero-image-card {
  position: relative;
}

.hero-image-card::after {
  content: "Büyütmek için tıkla";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(16, 24, 32, 0.78);
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.hero-image-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.home-bottom-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 520px) {
  .home-bottom-buttons {
    flex-direction: column;
  }

  .home-bottom-buttons .btn {
    width: 100%;
  }
}
/* =========================
   PARÇALAR SAYFASI - TEKLİFE DÖN BUTONU
========================= */

.return-offer-btn {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 800;
  background: #2da8d8;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 14px 35px rgba(16, 24, 32, 0.22);
  display: none;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.return-offer-btn:hover {
  background: #1688b4;
  transform: translateY(-3px);
}

.return-offer-btn.show {
  display: flex;
}

@media (max-width: 700px) {
  .return-offer-btn {
    right: 16px;
    bottom: 18px;
    padding: 13px 16px;
    font-size: 14px;
  }
}
.parts-bottom-buttons {
  margin-top: 38px;
  display: flex;
  justify-content: center;
}

.parts-bottom-buttons .btn {
  min-width: 220px;
}

@media (max-width: 520px) {
  .parts-bottom-buttons .btn {
    width: 100%;
  }
}
.contact-action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 520px) {
  .contact-action-buttons {
    flex-direction: column;
  }

  .contact-action-buttons .btn {
    width: 100%;
  }
}
/* =========================
   STOK YÖNETİMİ - PARÇA EKLE / SİL
========================= */

.add-stock-item-box {
  background: #f5f8fb;
  border: 1px solid #e5edf3;
  border-radius: 22px;
  padding: 24px;
  margin-bottom: 28px;
}

.add-stock-item-box h3 {
  color: #101820;
  font-size: 24px;
  margin-bottom: 18px;
}

.add-stock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stock-name-input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #ccd9e3;
  border-radius: 12px;
  font: inherit;
  outline: none;
}

.stock-name-input:focus {
  border-color: #2da8d8;
  box-shadow: 0 0 0 4px rgba(45, 168, 216, 0.12);
}

.delete-stock-btn {
  background: #ffe8e8;
  color: #c73232;
  border: none;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
}

.delete-stock-btn:hover {
  background: #ffcfcf;
}

.no-image {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #5d6b78;
  font-weight: bold;
  font-size: 13px;
  background: linear-gradient(135deg, #dcecf5, #ffffff);
}

@media (max-width: 1000px) {
  .add-stock-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .add-stock-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  body {
    background-image:
      linear-gradient(rgba(7, 15, 20, 0.68), rgba(7, 15, 20, 0.68)),
      url("../images/Dus-master-mobil-arka-plan.webp");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }
}

/* =========================
   DUŞ MASTER - FİNAL GÖRSEL DÜZENLEMELER
========================= */

:root {
  --dm-dark: #101820;
  --dm-blue: #2da8d8;
  --dm-blue-dark: #1688b4;
  --dm-text: #1d252d;
  --dm-muted: #5d6b78;
  --dm-glass: rgba(245, 248, 251, 0.70);
  --dm-card: rgba(255, 255, 255, 0.91);
}

html {
  min-height: 100%;
  background: #071014;
}

body {
  min-height: 100vh;
  color: var(--dm-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-image:
    linear-gradient(rgba(7, 15, 20, 0.27), rgba(7, 15, 20, 0.27)),
    url("../images/Dus-master-pc-arka-plan.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.navbar {
  background: rgba(255, 255, 255, 0.93);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 7px 26px rgba(16, 24, 32, 0.08);
}

.logo,
.footer-logo {
  transition: transform 0.2s ease;
}

.logo:hover,
.footer-logo:hover {
  transform: translateY(-1px);
}

nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -9px;
  height: 2px;
  border-radius: 10px;
  background: var(--dm-blue);
  transition: 0.2s ease;
}

nav a:hover::after,
nav a.active::after {
  left: 0;
  right: 0;
}

.hero,
.page-hero {
  background-image:
    linear-gradient(135deg, rgba(7, 15, 20, 0.84), rgba(20, 48, 64, 0.64)),
    url("../images/Dus-master-pc-arka-plan.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-models,
.page-section {
  background: var(--dm-glass);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.page-section.white-section,
.white-section {
  background: rgba(255, 255, 255, 0.62);
}

.home-models > *,
.page-section > * {
  width: min(100%, 1280px);
  margin-left: auto;
  margin-right: auto;
}

.model-preview-card,
.info-card,
.part-card,
.form-wrapper,
.contact-card,
.contact-info-box,
.contact-parts-box,
.selected-parts-box,
.offer-info-card,
.gallery-card,
.model-card,
.add-stock-item-box,
.stock-management-box,
.admin-login-box {
  background: var(--dm-card);
  border: 1px solid rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(16, 24, 32, 0.10);
}

.model-preview-card,
.info-card,
.part-card,
.gallery-card,
.model-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.model-preview-card:hover,
.info-card:hover,
.part-card:hover,
.gallery-card:hover,
.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(16, 24, 32, 0.16);
  border-color: rgba(45, 168, 216, 0.36);
}

.hero-image-card img,
.model-real-image img,
.part-image img,
.mini-part-image img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust-list span {
  color: #eefaff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 14px;
}

.home-benefits {
  padding: 90px 60px;
  background: rgba(239, 247, 251, 0.66);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.home-benefits > *,
.home-cta {
  width: min(calc(100% - 120px), 1280px);
  margin-left: auto;
  margin-right: auto;
}

.centered-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  min-height: 235px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.09);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--dm-blue), #65d7ff);
  color: #fff;
  font-weight: 800;
}

.benefit-card h3 {
  margin-bottom: 10px;
  color: var(--dm-dark);
  font-size: 21px;
}

.benefit-card p {
  color: var(--dm-muted);
  line-height: 1.65;
}

.home-cta {
  margin-top: 34px;
  margin-bottom: 34px;
  padding: 38px 42px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(30, 72, 94, 0.94));
  color: #fff;
  box-shadow: 0 20px 50px rgba(7, 15, 20, 0.26);
}

.home-cta span { color: #66d9ff; font-weight: 800; }
.home-cta h2 { margin-top: 7px; font-size: clamp(27px, 3vw, 40px); }
.home-cta p { margin-top: 8px; color: #d7e7ef; }
.home-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }

.no-image {
  min-height: 100%;
  border: 1px dashed rgba(45, 168, 216, 0.40);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(45, 168, 216, 0.48);
  outline-offset: 3px;
}

.site-footer {
  padding: 0;
  text-align: left;
  background: rgba(8, 16, 22, 0.97);
}

.footer-inner {
  width: min(calc(100% - 120px), 1280px);
  margin: 0 auto;
  padding: 54px 0 38px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 55px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 27px;
  font-weight: 800;
}

.footer-brand p,
.footer-contact p {
  color: #aebfca;
  line-height: 1.7;
  max-width: 430px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 17px;
}

.footer-links a,
.footer-contact a {
  color: #c9d7df;
  transition: 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #66d9ff;
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 20px 60px;
  text-align: center;
  color: #91a4af;
  font-size: 14px;
}

.mobile-quick-actions {
  display: none;
}

@media (max-width: 1050px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .home-cta { align-items: flex-start; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px;
    background-image:
      linear-gradient(rgba(7, 15, 20, 0.22), rgba(7, 15, 20, 0.22)),
      url("../images/Dus-master-mobil-arka-plan.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }

  .hero,
  .page-hero {
    background-image:
      linear-gradient(135deg, rgba(7, 15, 20, 0.82), rgba(20, 48, 64, 0.62)),
      url("../images/Dus-master-mobil-arka-plan.webp");
    background-size: cover;
    background-position: center top;
  }

  .home-models,
  .page-section {
    background: rgba(245, 248, 251, 0.72);
  }

  .page-section.white-section,
  .white-section {
    background: rgba(255, 255, 255, 0.65);
  }

  .home-benefits {
    padding: 68px 22px;
    background: rgba(239, 247, 251, 0.69);
  }

  .home-benefits > *,
  .home-cta {
    width: 100%;
  }

  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .home-cta { margin: 22px 0 0; border-radius: 0; padding: 34px 22px; }
  .home-cta-actions, .home-cta-actions .btn { width: 100%; }

  .footer-inner {
    width: 100%;
    padding: 42px 24px 30px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom { padding: 18px 24px; }

  .mobile-quick-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 990;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 8px;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 38px rgba(7, 15, 20, 0.24);
  }

  .mobile-quick-actions a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 13px;
    font-weight: 800;
  }

  .mobile-call-btn { background: #101820; color: #fff; }
  .mobile-wa-btn { background: #1fa855; color: #fff; }

  .return-offer-btn { bottom: 88px; }
  .offer-toast { bottom: 90px; }

  nav a::after { display: none; }
}

@media (max-width: 520px) {
  .hero-trust-list { display: grid; grid-template-columns: 1fr; }
  .footer-logo { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* =========================
   YAYINA HAZIR SON DOKUNUŞLAR
========================= */

.service-regions {
  width: min(calc(100% - 120px), 1280px);
  margin: 34px auto;
  padding: 54px 42px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 46px rgba(7, 15, 20, 0.13);
}

.region-chip-list,
.contact-region-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.region-chip-list span,
.contact-region-list span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(45, 168, 216, 0.12);
  border: 1px solid rgba(45, 168, 216, 0.24);
  color: #12394b;
  font-weight: 800;
}

.region-note,
.small-contact-note {
  margin-top: 18px;
  text-align: center;
  color: #526572;
}

.contact-region-list {
  justify-content: flex-start;
  margin-top: 14px;
}

.gallery-image-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-image-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-card-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.gallery-card-info .gallery-offer-btn {
  width: 100%;
  margin-top: 14px;
}

.lightbox-offer-btn {
  margin: 14px auto 0;
  min-width: 235px;
}

.selected-gallery-model {
  margin-bottom: 22px;
  padding: 14px;
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  background: rgba(45, 168, 216, 0.10);
  border: 1px solid rgba(45, 168, 216, 0.24);
}

.selected-gallery-model[hidden] { display: none; }
.selected-gallery-model img {
  width: 112px;
  height: 88px;
  object-fit: cover;
  border-radius: 13px;
}
.selected-gallery-model span { display: block; color: #55707f; font-size: 13px; font-weight: 700; }
.selected-gallery-model strong { display: block; margin: 4px 0 8px; color: #101820; }
.selected-gallery-model button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #b22d2d;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.admin-message {
  display: none;
  margin: 16px 0;
  padding: 13px 15px;
  border-radius: 12px;
  background: rgba(45, 168, 216, 0.12);
  color: #12394b;
  font-weight: 700;
}
.admin-message.show { display: block; }
.admin-message.error { background: #ffe8e8; color: #a42525; }

@media (max-width: 768px) {
  .service-regions {
    width: calc(100% - 28px);
    margin: 18px auto;
    padding: 38px 20px;
    border-radius: 22px;
  }
  .region-chip-list span,
  .contact-region-list span { padding: 9px 13px; }
  .selected-gallery-model { grid-template-columns: 86px 1fr; }
  .selected-gallery-model img { width: 86px; height: 76px; }
  .lightbox-offer-btn { width: min(100%, 290px); }
}
/* =========================
   STOK YÖNETİMİ - MOBİL DÜZEN
========================= */

@media (max-width: 768px) {
  .page-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .admin-login-box {
    width: 100%;
    padding: 22px 16px;
    border-radius: 18px;
  }

  .admin-login-box .form-group input {
    min-height: 48px;
    font-size: 16px;
  }

  .admin-login-box .form-submit-btn {
    width: 100%;
    min-height: 48px;
  }

  .stock-management-box {
    width: 100%;
    padding: 16px 12px;
    border-radius: 18px;
  }

  .stock-management-box .section-title {
    margin-bottom: 20px;
  }

  .stock-management-box .section-title h2 {
    font-size: 25px;
  }

  /* Yeni parça ekleme alanı */

  .add-stock-item-box {
    padding: 18px 14px;
    margin-bottom: 22px;
    border-radius: 18px;
  }

  .add-stock-item-box h3 {
    font-size: 21px;
  }

  .add-stock-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .add-stock-grid input,
  .add-stock-grid select {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .add-stock-item-box > .btn {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
  }

  /* Tabloyu mobilde kart görünümüne dönüştür */

  .stock-table-wrapper {
    overflow: visible;
  }

  .stock-table {
    display: block;
    width: 100%;
    min-width: 0;
    border: none;
    background: transparent;
  }

  .stock-table thead {
    display: none;
  }

  .stock-table tbody {
    display: block;
    width: 100%;
  }

  .stock-table tr {
    display: block;
    width: 100%;
    margin-bottom: 18px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(20, 48, 64, 0.14);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(7, 15, 20, 0.12);
  }

  .stock-table td {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 0;
    border: none;
    text-align: left;
  }

  .stock-table td::before {
    content: attr(data-label);
    color: #101820;
    font-size: 14px;
    font-weight: 800;
  }

  /* Görseli kartın üstünde ortala */

  .stock-table td:first-child {
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(20, 48, 64, 0.12);
  }

  .stock-table td:first-child::before {
    display: none;
  }

  .stock-thumb {
    width: 120px;
    height: 95px;
    border-radius: 14px;
    overflow: hidden;
  }

  .stock-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .stock-name-input,
  .stock-price-input,
  .stock-status-select {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 11px 12px;
    font-size: 16px;
    border-radius: 12px;
  }

  .delete-stock-btn {
    width: 100%;
    min-height: 46px;
  }

  /* Alt işlem butonları */

  .stock-actions {
    position: sticky;
    bottom: 8px;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 20px;
    padding: 10px;
    background: rgba(245, 248, 251, 0.94);
    border: 1px solid rgba(20, 48, 64, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(7, 15, 20, 0.22);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .stock-actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 10px 8px;
    font-size: 14px;
  }

  #saveStockBtn {
    grid-column: 1 / -1;
  }

  .stock-note {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.6;
  }
}
/* =========================
   PARÇA SİLME ONAY PENCERESİ
========================= */

.delete-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(7, 15, 20, 0.65);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.22s ease;
}

.delete-confirm-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.delete-confirm-card {
  width: min(430px, 100%);
  padding: 30px 26px;
  text-align: center;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(7, 15, 20, 0.35);

  transform: translateY(18px) scale(0.96);
  transition: 0.22s ease;
}

.delete-confirm-modal.show .delete-confirm-card {
  transform: translateY(0) scale(1);
}

.delete-confirm-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #ffe1e1;
  color: #d23131;
  font-size: 31px;
  font-weight: 900;
}

.delete-confirm-card h3 {
  margin: 0 0 10px;
  color: #101820;
  font-size: 25px;
}

.delete-confirm-card p {
  margin: 0;
  color: #64727d;
  line-height: 1.6;
}

.delete-confirm-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.delete-confirm-actions button {
  min-width: 140px;
  min-height: 46px;
}

.delete-confirm-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  background: #df3e3e;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.delete-confirm-btn:hover {
  background: #bd2929;
  transform: translateY(-2px);
}

.delete-confirm-btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

@media (max-width: 520px) {
  .delete-confirm-card {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .delete-confirm-actions {
    flex-direction: column-reverse;
  }

  .delete-confirm-actions button {
    width: 100%;
  }
}
/* =========================
   SAYFANIN BAŞINA DÖN BUTONU
========================= */

.scroll-top-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9500;

  display: grid;
  place-items: center;

  width: 52px;
  height: 52px;
  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  background: rgba(16, 24, 32, 0.92);
  color: #ffffff;

  font-size: 27px;
  font-weight: 800;
  line-height: 1;

  box-shadow: 0 10px 30px rgba(7, 15, 20, 0.28);
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(16px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.scroll-top-button.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover {
  background: #2da8d8;
  transform: translateY(-3px);
}

.scroll-top-button:active {
  transform: translateY(0);
}

.scroll-top-button:focus-visible {
  outline: 3px solid rgba(45, 168, 216, 0.4);
  outline-offset: 3px;
}

/* Mobilde Ara / WhatsApp çubuğunun üzerinde dursun */
@media (max-width: 768px) {
  .scroll-top-button {
    right: 16px;
    bottom: 86px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

/* =========================
   YAYINA HAZIR ADMIN PANELİ V2
========================= */

.admin-page-section {
  padding-top: 48px;
  padding-bottom: 64px;
}

.admin-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  padding: 7px;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 18px;
  background: rgba(236, 244, 248, 0.88);
  overflow-x: auto;
}

.admin-tab-btn {
  flex: 1 0 auto;
  min-height: 46px;
  padding: 11px 18px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: #43515d;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.admin-tab-btn:hover,
.admin-tab-btn.active {
  background: #ffffff;
  color: #168bb7;
  box-shadow: 0 8px 24px rgba(7, 15, 20, 0.1);
}

.admin-tab-count {
  display: inline-grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 999px;
  background: #e9f7fd;
  color: #168bb7;
  font-size: 12px;
}

.admin-tab-panel { display: none; }
.admin-tab-panel.active { display: block; animation: adminPanelIn 0.22s ease; }
@keyframes adminPanelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.admin-section-heading { margin-bottom: 24px; }

.admin-message {
  display: none;
  margin-bottom: 20px;
  padding: 13px 16px;
  border-radius: 13px;
  background: #e6f8ee;
  color: #176c41;
  font-weight: 750;
}
.admin-message.show { display: block; }
.admin-message.error { background: #ffe8e8; color: #a42525; }

.add-stock-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.image-upload-group input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px dashed #a9c7d8;
  border-radius: 12px;
  background: #ffffff;
  font: inherit;
}
.image-upload-group small { display: block; margin-top: 7px; color: #667784; font-size: 12px; }

.new-part-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  padding: 10px;
  border-radius: 14px;
  background: #ffffff;
  color: #176c41;
  font-weight: 750;
}
.new-part-preview img { width: 76px; height: 62px; object-fit: cover; border-radius: 10px; }

.stock-image-cell { display: grid; justify-items: center; gap: 8px; }
.stock-image-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid #b8d5e3;
  border-radius: 999px;
  background: #eff9fd;
  color: #167da5;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.stock-image-upload-btn:hover { background: #dff3fb; }

.quote-admin-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 16px;
  background: rgba(245, 249, 251, 0.92);
}
.quote-admin-toolbar label { font-weight: 800; color: #24333e; }
.quote-admin-toolbar select {
  min-height: 43px;
  padding: 9px 38px 9px 12px;
  border: 1px solid #c7dce7;
  border-radius: 11px;
  background: #fff;
  font: inherit;
}
.compact-btn { min-height: 40px !important; padding: 9px 15px !important; font-size: 14px !important; }

.admin-quotes-list { display: grid; gap: 18px; }
.admin-empty-state {
  padding: 34px 20px;
  border: 1px dashed #b7ccd7;
  border-radius: 18px;
  background: rgba(250, 252, 253, 0.9);
  color: #60727e;
  text-align: center;
}
.admin-empty-state.error-state { color: #a42525; background: #fff0f0; }

.admin-quote-card {
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.11);
  border-left: 5px solid #2da8d8;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 34px rgba(7, 15, 20, 0.1);
}
.admin-quote-card.status-contacted { border-left-color: #f0a92d; }
.admin-quote-card.status-completed { border-left-color: #27a268; }
.admin-quote-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 20px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  background: rgba(245, 249, 251, 0.82);
}
.admin-quote-header h3 { margin: 8px 0 3px; color: #101820; font-size: 22px; }
.admin-quote-header p { margin: 0; color: #6b7a85; font-size: 13px; }
.quote-status-badge {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e8f7fd;
  color: #168bb7;
  font-size: 12px;
  font-weight: 850;
}
.status-contacted .quote-status-badge { background: #fff4dd; color: #a36800; }
.status-completed .quote-status-badge { background: #e6f8ee; color: #177a49; }
.quote-status-select {
  min-width: 145px;
  min-height: 42px;
  padding: 8px 35px 8px 11px;
  border: 1px solid #c7dce7;
  border-radius: 11px;
  background: #fff;
  font: inherit;
  font-weight: 700;
}
.admin-quote-body { padding: 20px; }
.quote-gallery-thumb {
  width: 140px;
  height: 105px;
  margin-bottom: 16px;
  border-radius: 14px;
  object-fit: cover;
}
.quote-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.quote-detail-grid > div,
.quote-note,
.quote-parts {
  padding: 13px;
  border-radius: 13px;
  background: #f5f9fb;
}
.quote-detail-grid strong,
.quote-note strong,
.quote-parts > strong { display: block; margin-bottom: 5px; color: #50616d; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.quote-detail-grid span { color: #17232c; font-weight: 700; }
.quote-note, .quote-parts { margin-top: 12px; }
.quote-note p, .quote-parts p { margin: 0; color: #354650; line-height: 1.6; white-space: pre-wrap; }
.quote-parts ul { margin: 7px 0 0; padding-left: 19px; color: #354650; }
.quote-total { margin-top: 10px; color: #168bb7; font-weight: 900; }
.admin-quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 15px 20px 20px;
}

.backup-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.backup-card {
  padding: 25px;
  border: 1px solid rgba(16, 24, 32, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(7, 15, 20, 0.08);
}
.backup-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: #e8f7fd;
  color: #168bb7;
  font-size: 26px;
  font-weight: 900;
}
.backup-card h3 { margin: 0 0 8px; color: #101820; font-size: 22px; }
.backup-card p { margin: 0 0 20px; color: #60727e; line-height: 1.65; }
.backup-file-label { display: inline-flex; cursor: pointer; }
.backup-warning {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff6df;
  color: #7b5b12;
}

@media (max-width: 1000px) {
  .add-stock-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .admin-page-section { padding-left: 10px; padding-right: 10px; }
  .stock-management-box { padding: 14px 10px; }
  .admin-tabs { margin-bottom: 20px; }
  .admin-tab-btn { flex: 0 0 auto; padding-inline: 14px; }
  .add-stock-grid { grid-template-columns: 1fr; }
  .stock-table td:first-child { flex-direction: column; gap: 9px; }
  .stock-image-cell { width: 100%; }
  .quote-admin-toolbar { align-items: stretch; flex-direction: column; }
  .quote-admin-toolbar select, .quote-admin-toolbar .btn { width: 100%; }
  .admin-quote-header { flex-direction: column; }
  .quote-status-select { width: 100%; }
  .quote-detail-grid { grid-template-columns: 1fr; }
  .quote-gallery-thumb { width: 100%; height: 190px; }
  .admin-quote-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .admin-quote-actions .delete-stock-btn { grid-column: 1 / -1; }
  .backup-grid { grid-template-columns: 1fr; }
  .backup-card .btn, .backup-file-label { width: 100%; justify-content: center; }
}

@media (max-width: 460px) {
  .admin-quote-actions { grid-template-columns: 1fr; }
  .admin-quote-actions .delete-stock-btn { grid-column: auto; }
}


.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.not-found-card {
  width: min(560px, 100%);
  padding: 44px 28px;
  text-align: center;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(7, 15, 20, 0.28);
}
.not-found-card > span { color: #2da8d8; font-size: clamp(60px, 12vw, 110px); font-weight: 950; line-height: 1; }
.not-found-card h1 { margin: 16px 0 9px; color: #101820; }
.not-found-card p { margin: 0 0 24px; color: #60727e; }

/* =========================
   FINAL UX - ARKA PLAN / TEKLİF GÖRSELİ
========================= */
.home-models {
  background: rgba(245, 248, 251, 0.58) !important;
  -webkit-backdrop-filter: blur(0.5px);
  backdrop-filter: blur(0.5px);
}

.quote-gallery-preview-btn {
  position: relative;
  display: block;
  width: min(220px, 100%);
  margin: 0 0 16px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 15px;
  background: #101820;
  cursor: zoom-in;
  box-shadow: 0 7px 22px rgba(7, 15, 20, 0.18);
}
.quote-gallery-preview-btn .quote-gallery-thumb {
  display: block;
  width: 100%;
  height: 150px;
  margin: 0;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.quote-gallery-preview-btn:hover .quote-gallery-thumb { transform: scale(1.05); }
.quote-gallery-zoom-text {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(7, 15, 20, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  pointer-events: none;
}
.quote-image-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 10, 14, 0.82);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.quote-image-modal.show { opacity: 1; visibility: visible; pointer-events: auto; }
.quote-image-modal-card {
  position: relative;
  width: min(900px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0,0,0,.48);
  transform: translateY(18px) scale(.97);
  transition: transform .22s ease;
}
.quote-image-modal.show .quote-image-modal-card { transform: translateY(0) scale(1); }
.quote-image-modal-media {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 16px;
  background: #091219;
}
.quote-image-modal-media img {
  display: block;
  max-width: 100%;
  max-height: 68vh;
  border-radius: 15px;
  object-fit: contain;
}
.quote-image-modal-info { padding: 20px 24px 24px; text-align: center; }
.quote-image-modal-info span {
  display: block; margin-bottom: 7px; color: #2da8d8; font-size: 12px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase;
}
.quote-image-modal-info h3 { margin: 0 0 7px; color: #101820; font-size: 25px; }
.quote-image-modal-info p { margin: 0; color: #61717c; }
.quote-image-modal-close {
  position: absolute; top: 13px; right: 13px; z-index: 2; display: grid; place-items: center; width: 44px; height: 44px; padding: 0;
  border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(7,15,20,.88); color: #fff; font-size: 29px; line-height: 1; cursor: pointer;
}
.quote-image-modal-close:hover { background: #2da8d8; }

@media (max-width: 768px) {
  .home-models {
    background: rgba(245, 248, 251, 0.62) !important;
    -webkit-backdrop-filter: blur(0.5px);
    backdrop-filter: blur(0.5px);
  }
  .quote-gallery-preview-btn { width: 100%; }
  .quote-gallery-preview-btn .quote-gallery-thumb { height: 210px; }
  .quote-image-modal { padding: 10px; }
  .quote-image-modal-card { max-height: calc(100vh - 20px); border-radius: 19px; }
  .quote-image-modal-media { min-height: 220px; padding: 10px; }
  .quote-image-modal-media img { max-height: 58vh; }
  .quote-image-modal-info { padding: 17px 16px 21px; }
  .quote-image-modal-info h3 { font-size: 21px; }
}
/* =========================
   PARÇA GÖRSELİ BÜYÜTME
========================= */

.part-image-button {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  cursor: zoom-in;
  font: inherit;
}

.part-image-button img {
  transition: transform 0.25s ease;
}

.part-image-button:hover img {
  transform: scale(1.04);
}

.part-image-zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;

  padding: 7px 11px;
  border-radius: 999px;

  background: rgba(7, 15, 20, 0.82);
  color: #ffffff;

  font-size: 12px;
  font-weight: 800;

  pointer-events: none;
}


/* Arka karartma */

.part-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(4, 10, 14, 0.84);

  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: 0.22s ease;
}

.part-preview-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* Kart */

.part-preview-card {
  position: relative;

  width: min(800px, 100%);
  max-height: calc(100vh - 40px);

  overflow: auto;

  background: #ffffff;
  border-radius: 24px;

  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);

  transform: translateY(20px) scale(0.97);
  transition: 0.22s ease;
}

.part-preview-modal.show .part-preview-card {
  transform: translateY(0) scale(1);
}


/* Büyük görsel */

.part-preview-image-area {
  display: grid;
  place-items: center;

  min-height: 420px;
  padding: 22px;

  background: #101820;
}

.part-preview-image-area img {
  display: block;

  max-width: 100%;
  max-height: 65vh;

  object-fit: contain;

  border-radius: 15px;
}


/* Bilgi alanı */

.part-preview-info {
  padding: 20px 24px 25px;
  text-align: center;
}

.part-preview-info span {
  display: block;

  margin-bottom: 6px;

  color: #2da8d8;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.part-preview-info h3 {
  margin: 0 0 8px;

  color: #101820;

  font-size: 25px;
}

.part-preview-info strong {
  color: #2da8d8;

  font-size: 22px;
}


/* Kapat */

.part-preview-close {
  position: absolute;

  top: 13px;
  right: 13px;

  z-index: 3;

  display: grid;
  place-items: center;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;

  background: rgba(7, 15, 20, 0.9);
  color: #ffffff;

  font-size: 29px;
  line-height: 1;

  cursor: pointer;
}

.part-preview-close:hover {
  background: #2da8d8;
}


/* Mobil */

@media (max-width: 768px) {

  .part-preview-modal {
    padding: 10px;
  }

  .part-preview-card {
    max-height: calc(100vh - 20px);
    border-radius: 19px;
  }

  .part-preview-image-area {
    min-height: 300px;
    padding: 12px;
  }

  .part-preview-image-area img {
    max-height: 60vh;
  }

  .part-preview-info {
    padding: 17px 16px 21px;
  }

  .part-preview-info h3 {
    font-size: 21px;
  }

  .part-preview-info strong {
    font-size: 20px;
  }
}
