/* Global premium layer for all Gumusall pages */
:root {
  --gl-bg: #f4ebdf;
  --gl-surface: #fff9f0;
  --gl-ink: #17293c;
  --gl-muted: #5c6e83;
  --gl-gold: #ad7a46;
  --gl-gold-deep: #895d33;
  --gl-line: #ddcbb6;
  --gl-shadow: 0 14px 30px rgba(13, 24, 36, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--gl-ink);
  background:
    radial-gradient(circle at 13% 12%, rgba(173, 122, 70, 0.11), transparent 35%),
    radial-gradient(circle at 86% 85%, rgba(22, 43, 66, 0.08), transparent 38%),
    linear-gradient(180deg, #faf5eb 0%, var(--gl-bg) 100%);
}

a {
  color: #1f3e5d;
}

a:hover {
  color: var(--gl-gold-deep);
}

button,
.btn,
[type="button"],
[type="submit"] {
  border-radius: 999px;
}

input,
textarea,
select {
  border-radius: 10px;
}

main,
section,
article,
aside {
  scroll-margin-top: 90px;
}

.card,
.urun,
.product-card,
.products-container,
.cart-items,
.cart-summary,
.contact-container,
.empty-offers,
.ilan {
  box-shadow: var(--gl-shadow);
  border-color: var(--gl-line);
}

.page-header,
.baslik {
  position: relative;
  overflow: hidden;
}

.page-header::after,
.baslik::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(173, 122, 70, 0.8), transparent);
}

:focus-visible {
  outline: 3px solid rgba(173, 122, 70, 0.3);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  body {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }
}
