:root {
  --bg-deep: #0a0c12;
  --bg-card: #12151f;
  --bg-card-hover: #181c2a;
  --gold: #c9a227;
  --gold-bright: #e8c547;
  --gold-dim: rgba(201, 162, 39, 0.35);
  --text: #e8eaef;
  --text-muted: #9aa3b5;
  --border: rgba(201, 162, 39, 0.2);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius: 14px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(60, 80, 140, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(201, 162, 39, 0.06), transparent 45%);
  min-height: 100vh;
}

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

a {
  color: var(--gold-bright);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.wrap {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.95), rgba(10, 12, 18, 0.75));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), #8a6b1a);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  flex: 1;
  min-width: 0;
}

.header-cta {
  margin-left: auto;
}

@media (max-width: 520px) {
  .header-cta {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-gold {
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  color: #1a1508;
  box-shadow: 0 4px 20px var(--gold-dim);
}

.btn-gold:hover {
  box-shadow: 0 6px 28px rgba(201, 162, 39, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 20% 20% auto;
  height: 40%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text);
}

.hero-lead {
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 0.75rem;
}

.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.products {
  border-top: 1px solid var(--border);
}

/* Product grid */
.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-2px);
}

/* Tam görünüm: kare kırpma yok (önceden cover + 1:1 kenarları kesiyordu) */
.product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 162, 39, 0.06), #0a0c12);
}

.product-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.product-body p {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 1rem !important;
}

.price-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  vertical-align: middle;
  margin-right: 0.35rem;
}

/* Features */
.features {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 768px) {
  .feature-card {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card-reverse .feature-text {
    order: -1;
  }
}

/* Özellik görselleri: 4:3 zorlaması kaldırıldı — orijinal çerçeve tam görünür */
.feature-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  align-self: start;
  background: var(--bg-deep);
}

.feature-text {
  padding: 1.25rem 1.5rem;
}

@media (min-width: 768px) {
  .feature-text {
    padding: 1.5rem 2rem;
  }
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.feature-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 calc(2.5rem + 56px);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.footer-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 28rem;
  margin: 0 auto 1.25rem;
}

/* Floating WhatsApp */
.fab-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fab-wa:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.fab-wa:focus-visible {
  outline-color: #25d366;
}
