/* Petstag — evcil hayvan kimlik & takip — www.petstag.com.tr */
:root {
  --bg-cream: #fef8f2;
  --bg-card: #ffffff;
  --accent-red: #c41e3a;
  --accent-blue: #1e5aa8;
  --accent-green: #1a7f4e;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --whatsapp: #25d366;
  --shadow: 0 8px 32px rgba(30, 40, 60, 0.08);
  --radius: 20px;
  --font: "Nunito", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.nav-open {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background-color: var(--bg-cream);
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

/* Pati izleri zemini */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath fill='%231a1a1a' d='M45 35c4-8 14-8 18 0 2 5-1 10-9 10s-11-5-9-10zm32 0c4-8 14-8 18 0 2 5-1 10-9 10s-11-5-9-10zm-16 22c6-10 20-10 26 0 3 6-2 12-13 12s-16-6-13-12zm-28 8c5-9 17-9 22 0 2 5-2 9-11 9s-13-4-11-9zm44 0c5-9 17-9 22 0 2 5-2 9-11 9s-13-4-11-9z'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

body > * {
  position: relative;
  z-index: 1;
}

main#icerik {
  scroll-margin-top: 5rem;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-red);
}

a:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.65rem 1.1rem;
  background: var(--accent-red);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.skip-link:focus {
  left: max(0.75rem, env(safe-area-inset-left, 0px));
  top: max(0.75rem, env(safe-area-inset-top, 0px));
}

.skip-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(254, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
  flex-wrap: nowrap;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  color: var(--text);
  letter-spacing: -0.02em;
  min-width: min-content;
  flex-shrink: 0;
  text-decoration: none;
}

a.logo:hover .logo-site-name {
  color: var(--accent-red);
}

.logo-site-name {
  font-size: clamp(0.78rem, 2.5vw, 0.98rem);
  font-weight: 800;
  color: inherit;
  line-height: 1.15;
  min-width: 0;
}

.logo span.emoji {
  font-size: 1.5rem;
  line-height: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
}

.page-visual-banner {
  padding: 0.65rem 0 0.35rem;
  text-align: center;
}

.page-visual-banner .container {
  display: flex;
  justify-content: center;
}

.page-brand-img {
  display: block;
  margin-inline: auto;
  width: min(320px, 92vw);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 480px) {
  .page-brand-img {
    width: min(280px, 94vw);
  }
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-main a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--accent-red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

/* Mobil menü — hamburger + panel */
.nav-toggle {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: var(--bg-card);
  cursor: pointer;
  z-index: 102;
  touch-action: manipulation;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-nav-open .nav-toggle .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav-panel {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem 1.5rem;
  flex: 1;
  min-width: 0;
}

@media (min-width: 992px) {
  .site-nav-panel {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}

@media (max-width: 991px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1rem 1rem 1.25rem;
    margin: 0;
    background: rgba(254, 248, 242, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    z-index: 101;
    display: none;
    max-height: min(70vh, calc(100vh - 3.5rem));
    max-height: min(70vh, calc(100dvh - 3.5rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.is-nav-open .site-nav-panel {
    display: flex;
  }

  .site-nav-panel .nav-main {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .site-nav-panel .nav-main a {
    padding: 0.85rem 0.75rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 12px;
  }

  .site-nav-panel .nav-main a:hover,
  .site-nav-panel .nav-main a.active {
    background: rgba(196, 30, 58, 0.08);
  }

  .site-nav-panel .header-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .site-nav-panel .header-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  touch-action: manipulation;
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), #e85d6f);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 6px 22px rgba(196, 30, 58, 0.45);
}

.btn-phone {
  background: var(--bg-card);
  color: var(--text);
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.btn-phone:hover {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
}

.btn-wa {
  background: var(--whatsapp);
  color: #fff;
}

.btn-wa:hover {
  color: #fff;
  filter: brightness(1.05);
}

.btn-wa-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.payment-info-box {
  grid-column: 1 / -1;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(30, 90, 168, 0.2);
  background: linear-gradient(145deg, rgba(30, 90, 168, 0.06), rgba(26, 127, 78, 0.06));
  margin-top: 0.25rem;
}

.payment-info-box strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--accent-blue);
}

.payment-info-box--card {
  border-color: rgba(196, 30, 58, 0.2);
  background: linear-gradient(145deg, rgba(196, 30, 58, 0.06), #fff);
}

.payment-info-box--card strong {
  color: var(--accent-red);
}

.payment-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.payment-label {
  font-weight: 700;
  color: var(--text-muted);
  min-width: 8rem;
}

.payment-value {
  font-weight: 700;
  color: var(--text);
}

.payment-iban {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  word-break: break-all;
}

.payment-info-row--iban {
  flex-direction: column;
  align-items: flex-start;
}

.payment-info-hint {
  margin: 0.75rem 0 0;
}

.order-wa-wrap {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}

/* Ürün görselleri (web15.png vb.) — sayfa içi galeri */
.site-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 0.85rem;
  margin: 2rem 0;
  align-items: stretch;
}

.site-photo-grid--tight {
  margin: 1.25rem 0;
}

.site-photo-frame {
  margin: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  overflow: visible;
  line-height: 0;
}

.site-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  border-radius: 12px;
  object-fit: contain;
  background: transparent;
  min-height: 0;
}

.site-photo-frame img[src$="rsm3.png"] {
  width: 68%;
  max-width: 380px;
  margin-inline: auto;
}

/* Petstag nedir — rsm2 & rsm3 ikili galeri: küçültülmüş ve ortalanmış */
.petstag-page .petstag-gallery-pair {
  max-width: 560px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  align-items: center;
  justify-items: center;
}

.petstag-page .petstag-gallery-pair .site-photo-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 252px;
}

.petstag-page .petstag-gallery-pair img[src$="rsm2.png"],
.petstag-page .petstag-gallery-pair img[src$="rsm3.png"] {
  width: 100%;
  max-width: 220px;
  max-height: 240px;
  margin-inline: auto;
  object-fit: contain;
}

@media (max-width: 520px) {
  .petstag-page .petstag-gallery-pair {
    grid-template-columns: 1fr;
    max-width: 280px;
    gap: 1rem;
  }

  .petstag-page .petstag-gallery-pair .site-photo-frame {
    max-width: 100%;
  }
}

.site-photo-banner {
  margin: 2rem 0;
}

.site-photo-banner .site-photo-frame {
  max-width: 720px;
  margin-inline: auto;
}

/* Orijinal piksel boyutu (ör. web4) — kırpma/yeniden oran yok; dar ekranda genişlik sınırı */
.site-photo-frame--original {
  width: fit-content;
  width: -moz-fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.site-photo-banner .site-photo-frame--original {
  max-width: none;
}

.site-photo-frame--original img {
  width: auto;
  height: auto;
  max-width: 100%;
  min-height: 0;
  object-fit: unset;
  background: transparent;
}

.pet-strip img.pet-strip-img--original {
  width: auto;
  max-width: min(100%, 420px);
  height: auto;
  min-width: 200px;
  min-height: 48px;
  aspect-ratio: 360 / 88;
  object-fit: contain;
  object-position: center;
  justify-self: center;
  display: block;
  line-height: 0;
}

/* Ürün fotoğrafları (PNG); sabit logo oranı yok */
.pet-strip img.pet-strip-img--photo {
  width: auto;
  max-width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  object-position: center;
  justify-self: center;
  display: block;
  line-height: 0;
}

.site-photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
  align-items: start;
}

@media (max-width: 640px) {
  .site-photo-split {
    grid-template-columns: 1fr;
  }
}

/* Hero */
.hero {
  padding: 2.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .order-block {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(26, 127, 78, 0.12), rgba(30, 90, 168, 0.12));
  color: var(--accent-green);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  animation: fadeUp 0.6s 0.08s ease both;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 32ch;
  animation: fadeUp 0.6s 0.16s ease both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s 0.24s ease both;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
  animation: fadeUp 0.6s 0.32s ease both;
}

.hero-stats strong {
  color: var(--text);
  display: block;
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-visual .frame {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  line-height: 0;
}

.hero-visual .frame img {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.hero-visual .float-paw {
  position: absolute;
  font-size: 2rem;
  opacity: 0.35;
  animation: float 4s ease-in-out infinite;
}

.hero-visual .float-paw:nth-child(2) {
  top: -8px;
  right: 10%;
  animation-delay: -1s;
}

.hero-visual .float-paw:nth-child(3) {
  bottom: 10%;
  left: -5px;
  animation-delay: -2s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Sections */
.section {
  padding: 3rem 0;
}

@media (max-width: 600px) {
  .section {
    padding: 2rem 0;
  }

  .hero {
    padding: 1.75rem 0 2rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  font-weight: 800;
}

.section-title p {
  margin: 0;
  color: var(--text-muted);
  max-width: 36rem;
  margin-inline: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 40, 60, 0.12);
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Pet strip — üst hiza: kısa metin + yüksek görselde ortalamadan kaynaklanan boşluk olmaz */
.pet-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .pet-strip {
    grid-template-columns: 1fr;
  }
}

.pet-strip img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: none;
}

.pet-strip .copy h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.pet-strip .copy p {
  margin: 0 0 0.75rem;
}

.pet-strip .copy p:last-child {
  margin-bottom: 0;
}

.pet-strip .copy .btn {
  margin-top: 0.25rem;
}

/* Order block */
.order-block {
  background: linear-gradient(145deg, #fff 0%, #f5f0ea 100%);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.order-block h2 {
  margin-top: 0;
  text-align: center;
}

.price-tag {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-tag .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-red);
}

.price-tag .detail {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  #order-form .btn-primary {
    width: 100%;
    justify-self: stretch;
    min-height: 48px;
  }
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-section-title {
  margin: 1.5rem 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-green);
  grid-column: 1 / -1;
}

.pet-address-panel {
  grid-column: 1 / -1;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(26, 127, 78, 0.28);
  background: linear-gradient(145deg, rgba(26, 127, 78, 0.07), rgba(254, 248, 242, 0.98));
  margin-top: 0.35rem;
}

.pet-address-panel label {
  color: var(--accent-green);
}

.pet-address-panel textarea {
  min-height: 4.5rem;
}

.pet-nfc-barkod-lang-note {
  color: var(--text-muted);
  font-style: italic;
}

.input-file {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border: none;
  background: transparent;
}

.pet-photo-live-preview {
  margin-top: 0.75rem;
}

.pet-photo-live-preview img,
.pet-photo-preview-box img {
  max-width: 100%;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
}

.order-wa-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.pet-photo-preview-box {
  margin-top: 0.25rem;
}

.copy-pet-status {
  font-size: 0.88rem;
  color: var(--accent-green);
  font-weight: 600;
  margin: 0;
}

.copy-pet-status.err {
  color: var(--accent-red);
}

/* Hemen sipariş — kargo / kapıda ödeme vurgusu */
.kargo-promo-wrap {
  margin-bottom: 0.5rem;
}

.kargo-promo-banner {
  background: linear-gradient(135deg, rgba(26, 127, 78, 0.18) 0%, rgba(30, 90, 168, 0.14) 50%, rgba(196, 30, 58, 0.12) 100%);
  border: 2px solid rgba(26, 127, 78, 0.35);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  box-shadow: 0 6px 28px rgba(26, 127, 78, 0.12);
  text-align: center;
}

@media (max-width: 400px) {
  .kargo-promo-banner {
    padding: 1rem 0.85rem;
  }
}

.kargo-promo-main,
.kargo-promo-sub {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.45;
}

.kargo-promo-main {
  color: var(--text);
  margin-bottom: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

.kargo-promo-main strong {
  color: var(--accent-green);
  font-weight: 800;
}

.kargo-promo-sub strong {
  color: var(--accent-red);
  font-weight: 800;
}

.kargo-promo-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .kargo-promo-hint {
    display: inline;
    margin-top: 0;
    margin-left: 0.35rem;
  }
}

.kargo-promo-emoji {
  margin-right: 0.35rem;
}

.kargo-inline-strong {
  color: var(--accent-green);
  font-weight: 800;
}

/* Blog */
.blog-page .blog-lead {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.blog-page .blog-lead a {
  font-weight: 700;
}

/* Blog — dört görsel tek satır; tam görünür, oran korunur, kutuya sığar */
.blog-page .blog-gallery-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
  justify-items: stretch;
  margin: 1.5rem 0 2rem;
  width: 100%;
}

.blog-page .blog-gallery-row .blog-gallery-item {
  margin: 0;
  padding: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  min-height: 250px;
}

.blog-page .blog-gallery-row .blog-gallery-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(300px, 34vw);
  min-height: 100px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  vertical-align: bottom;
}

.blog-page .blog-gallery-row .site-photo-frame--original {
  max-width: 100%;
  width: 100%;
}

.blog-page .blog-gallery-row .site-photo-frame--original img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(300px, 34vw);
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .blog-page .blog-gallery-row .blog-gallery-item {
    min-height: 200px;
  }

  .blog-page .blog-gallery-row .blog-gallery-item img,
  .blog-page .blog-gallery-row .site-photo-frame--original img {
    max-height: min(250px, 48vw);
  }
}

@media (max-width: 720px) {
  .blog-page .blog-gallery-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .blog-page .blog-gallery-row .blog-gallery-item {
    min-height: 175px;
    scroll-snap-align: unset;
  }

  .blog-page .blog-gallery-row .blog-gallery-item img,
  .blog-page .blog-gallery-row .site-photo-frame--original img {
    max-height: 250px;
  }
}

@media (max-width: 420px) {
  .blog-page .blog-gallery-row {
    grid-template-columns: 1fr;
  }

  .blog-page .blog-gallery-row .blog-gallery-item img,
  .blog-page .blog-gallery-row .site-photo-frame--original img {
    max-height: 320px;
  }
}

/* İletişim — beş görsel; blog ile aynı mantık: tam görünür, contain, kutuya sığar */
.iletisim-page .contact-gallery-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
  justify-items: stretch;
  margin: 0 0 2rem;
  width: 100%;
}

.iletisim-page .contact-gallery-row--bottom {
  margin-top: 2rem;
  margin-bottom: 0;
}

.iletisim-page .contact-gallery-row .contact-gallery-item {
  margin: 0;
  padding: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  min-height: 200px;
}

.iletisim-page .contact-gallery-row .contact-gallery-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(250px, 22vw);
  min-height: 90px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.iletisim-page .contact-gallery-row .site-photo-frame--original {
  max-width: 100%;
  width: 100%;
}

.iletisim-page .contact-gallery-row .site-photo-frame--original img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(250px, 22vw);
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .iletisim-page .contact-gallery-row .contact-gallery-item {
    min-height: 175px;
  }

  .iletisim-page .contact-gallery-row .contact-gallery-item img,
  .iletisim-page .contact-gallery-row .site-photo-frame--original img {
    max-height: min(225px, 34vw);
  }
}

@media (max-width: 720px) {
  .iletisim-page .contact-gallery-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .iletisim-page .contact-gallery-row .contact-gallery-item img,
  .iletisim-page .contact-gallery-row .site-photo-frame--original img {
    max-height: 240px;
  }
}

@media (max-width: 420px) {
  .iletisim-page .contact-gallery-row {
    grid-template-columns: 1fr;
  }

  .iletisim-page .contact-gallery-row .contact-gallery-item img,
  .iletisim-page .contact-gallery-row .site-photo-frame--original img {
    max-height: 300px;
  }
}

/* Hemen sipariş — ürün görselleri tam görünür (contain), blog/iletişimden biraz daha büyük */
.siparis-page #siparis .siparis-top-photos {
  max-width: 1024px;
  margin-inline: auto;
}

.siparis-page #siparis .site-photo-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  overflow: visible;
}

.siparis-page #siparis .site-photo-frame img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(360px, 44vw);
  object-fit: contain;
  object-position: center;
  min-height: 0;
}

.siparis-page #siparis .site-photo-frame img[src$="rsm3.png"] {
  width: 62%;
  max-width: min(280px, 62vw);
  max-height: min(220px, 32vw);
}

.siparis-page #siparis .site-photo-banner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.siparis-page #siparis .site-photo-banner .site-photo-frame {
  max-width: 100%;
}

.siparis-page #siparis .site-photo-banner .site-photo-frame img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(380px, 46vw);
  object-fit: contain;
  object-position: center;
}

.siparis-page #siparis .site-photo-frame--original {
  max-width: 100%;
  width: 100%;
}

.siparis-page #siparis .site-photo-frame--original img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(380px, 46vw);
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .siparis-page #siparis .site-photo-frame {
    min-height: 220px;
  }

  .siparis-page #siparis .site-photo-frame img {
    max-height: min(320px, 52vw);
  }

  .siparis-page #siparis .site-photo-banner .site-photo-frame img,
  .siparis-page #siparis .site-photo-frame--original img {
    max-height: min(340px, 54vw);
  }
}

@media (max-width: 640px) {
  .siparis-page #siparis .siparis-top-photos {
    grid-template-columns: 1fr;
  }

  .siparis-page #siparis .site-photo-frame img {
    max-height: min(300px, 70vw);
  }

  .siparis-page #siparis .site-photo-banner .site-photo-frame img,
  .siparis-page #siparis .site-photo-frame--original img {
    max-height: min(320px, 72vw);
  }
}

.contact-copy-block {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-copy-block h3 {
  margin-top: 0;
}

.contact-copy-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-section .blog-topic {
  background: var(--bg-card);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-section .blog-topic h2 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--accent-green);
}

.blog-tags {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.blog-tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(30, 90, 168, 0.1);
  color: var(--accent-blue);
}

.blog-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
  align-items: stretch;
}

.blog-reviews-grid .testimonial-card {
  margin: 0;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.order-use-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text);
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  background: rgba(26, 127, 78, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(26, 127, 78, 0.12);
}

/* Bayilik duyurusu — tüm sayfalarda */
.bayilik-notice {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.25rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(30, 90, 168, 0.1), rgba(26, 127, 78, 0.08));
  border: 1px solid rgba(30, 90, 168, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bayilik-notice-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem 1.25rem;
}

.bayilik-notice-inner p {
  margin: 0;
  flex: 1 1 16rem;
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  line-height: 1.55;
  color: var(--text);
  text-align: left;
}

.bayilik-notice strong {
  color: var(--accent-blue);
}

.bayilik-wa-btn {
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 44px;
}

.page-hero .bayilik-notice {
  margin-top: 1.25rem;
}

@media (max-width: 520px) {
  .bayilik-notice-inner {
    flex-direction: column;
    justify-content: center;
  }

  .bayilik-notice-inner p {
    flex: none;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .bayilik-notice {
    padding: 0.85rem 1rem;
  }
}

.success-msg {
  background: rgba(26, 127, 78, 0.12);
  color: var(--accent-green);
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  display: none;
}

.success-msg.show {
  display: block;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #2a2438 0%, #1a1522 100%);
  color: #e8e4ef;
  padding: 2.5rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
  margin-top: 3rem;
}

.site-footer a {
  color: #b8a9d9;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-brand {
  color: #fff;
}

.footer-brand > p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer-copyright {
  margin: 0;
  text-align: center;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.footer-badges-stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.footer-badge-store {
  display: inline-block;
  line-height: 0;
  background: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none !important;
}

.footer-badge-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.footer-badge-store img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-badges-compat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.1rem;
  padding-left: 0.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-compat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: clamp(0.72rem, 1.8vw, 0.82rem);
  font-weight: 700;
  color: #c8bdd9 !important;
  text-decoration: none !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.footer-compat-badge:hover {
  color: #fff !important;
}

.footer-compat-badge img {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .footer-badges-compat {
    border-left: none;
    padding-left: 0;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: center;
  }

  .footer-badges {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .footer-compat-badge {
    white-space: normal;
    text-align: center;
    max-width: 11rem;
    justify-content: center;
  }
}

/* Page hero small */
.page-hero {
  padding: 2rem 0 1rem;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 42rem;
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hemen sipariş — kayan bilgi bandı */
.page-hero-ticker {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0.25rem auto 0;
  padding: 0.55rem 0;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(30, 90, 168, 0.07), rgba(26, 127, 78, 0.06), rgba(30, 90, 168, 0.07));
  border: 1px solid rgba(30, 90, 168, 0.14);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.page-hero-ticker-track {
  display: flex;
  width: max-content;
  animation: page-hero-ticker-scroll 32s linear infinite;
}

.page-hero-ticker-segment {
  flex-shrink: 0;
  padding-right: 3rem;
  white-space: nowrap;
  font-size: clamp(0.88rem, 2.2vw, 1rem);
  color: var(--text-muted);
  line-height: 1.45;
}

.page-hero-ticker-segment strong {
  color: var(--accent-red);
  font-weight: 800;
}

.page-hero-ticker-dot {
  opacity: 0.45;
  padding: 0 0.15rem;
}

@keyframes page-hero-ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-ticker {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .page-hero-ticker-track {
    animation: none;
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .page-hero-ticker-segment {
    white-space: normal;
    padding-right: 0;
  }

  .page-hero-ticker-segment + .page-hero-ticker-segment {
    display: none;
  }

  .page-hero-ticker-dot {
    display: none;
  }
}

/* Content article */
.article {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.article h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

.article ul {
  padding-left: 1.25rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.contact-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Sales panel */
.panel-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.panel-stat {
  background: var(--bg-card);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.panel-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent-red);
}

.orders-table-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table.orders {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

table.orders th,
table.orders td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

table.orders th {
  background: rgba(30, 90, 168, 0.08);
  font-weight: 700;
}

table.orders tr:hover td {
  background: rgba(254, 248, 242, 0.8);
}

.empty-orders {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
}

/* Müşteri yorumları (ana sayfa carousel) */
.testimonials-section {
  padding-bottom: 3.5rem;
}

.testimonials-root {
  max-width: 960px;
  margin-inline: auto;
}

.testimonials-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 200px;
}

.testimonials-slide-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .testimonials-slide-inner {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.testimonial-card {
  margin: 0;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease;
}

.testimonial-card--a {
  background: linear-gradient(145deg, #fff 0%, #f8f2ec 100%);
  border-left: 4px solid var(--accent-red);
}

.testimonial-card--b {
  background: linear-gradient(145deg, #f5f9fc 0%, #fff 100%);
  border-left: 4px solid var(--accent-blue);
}

.testimonial-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
}

.testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  margin-top: auto;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-city {
  font-weight: 700;
  color: var(--accent-green);
}

.testimonial-date {
  font-weight: 600;
  color: var(--text-muted);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: var(--bg-card);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
  touch-action: manipulation;
}

.testimonial-nav-btn:hover {
  background: rgba(196, 30, 58, 0.08);
  border-color: var(--accent-red);
}

.testimonial-nav-btn:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.testimonials-counter {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-muted);
  min-width: 4rem;
  text-align: center;
}

.testimonials-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-dot {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  flex-shrink: 0;
}

.testimonial-dot:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.testimonial-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: transform 0.15s, background 0.15s;
}

.testimonial-dot.is-active::before {
  background: var(--accent-red);
  transform: scale(1.35);
}

.testimonial-dot:hover::before {
  background: var(--accent-blue);
}

.testimonial-dot.is-active:hover::before {
  background: var(--accent-red);
}
