/* Shared styles for Bedava Sepeti legal & support pages */
:root {
  --red: #E8382C;
  --ink: #141414;
  --grey: #9AA3AE;
  --bg: #FBFBFC;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
}
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.topbar {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 6vw;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #eee;
}
.topbar .brand {
  display: flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 16px; color: var(--ink);
}
.topbar .brand:hover { text-decoration: none; }
.topbar .back { font-weight: 600; font-size: 14px; }

.page {
  max-width: 760px; margin: 0 auto;
  padding: 56px 24px 80px;
  animation: pageIn .7s cubic-bezier(.2,.8,.3,1) both;
}
@keyframes pageIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.page h1 { font-size: 2.1rem; font-weight: 800; letter-spacing: -.5px; }
.page .updated { color: var(--grey); font-size: 13.5px; margin: 6px 0 34px; }
.page h2 { font-size: 1.2rem; font-weight: 700; margin: 34px 0 10px; }
.page p, .page li { font-size: 15px; color: #555; font-weight: 300; }
.page ul { padding-left: 22px; margin: 8px 0; }
.page .divider { border: 0; border-top: 1px solid #e8e8ea; margin: 48px 0; }
.page .lang-label {
  display: inline-block; background: #fff; border: 1px solid #eee;
  border-radius: 18px; padding: 4px 14px; font-size: 12px; font-weight: 700;
  color: var(--grey); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 14px;
}

.card {
  background: #fff; border-radius: 20px; padding: 26px 28px;
  box-shadow: 0 10px 34px rgba(0,0,0,.06); margin: 18px 0;
}

/* FAQ accordion */
details {
  background: #fff; border-radius: 16px; margin: 12px 0;
  box-shadow: 0 8px 26px rgba(0,0,0,.06); overflow: hidden;
}
details summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-weight: 600; font-size: 15px; display: flex; justify-content: space-between; align-items: center;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; font-size: 20px; color: var(--red); transition: transform .3s; }
details[open] summary::after { transform: rotate(45deg); }
details .a { padding: 0 22px 18px; font-size: 14px; color: #666; font-weight: 300; }

footer {
  text-align: center; padding: 30px 20px 50px;
  color: var(--grey); font-size: 13px;
}
footer .flinks { display: flex; gap: 22px; justify-content: center; margin-bottom: 12px; }
footer .flinks a { color: #666; font-weight: 600; }
