:root {
  --orange: #ff7a00;
  --orange-dark: #d85f00;
  --orange-soft: #fff2e6;
  --ink: #161616;
  --muted: #6b7280;
  --line: #ececec;
  --paper: #ffffff;
  --soft: #f8f8f8;
  --shadow: 0 20px 60px rgba(17, 17, 17, .08);
  --radius: 22px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: white; padding: 10px 14px; z-index: 99; }
.skip-link:focus { left: 14px; top: 14px; }

.topbar { background: var(--ink); color: white; font-size: 14px; overflow: hidden; }
.topbar__marquee { width: 100%; min-height: 38px; display: flex; align-items: center; overflow: hidden; }
.topbar__track { display: flex; width: max-content; min-width: 200%; gap: 48px; white-space: nowrap; align-items: center; padding-block: 8px; animation: topbarMarquee 22s linear infinite; will-change: transform; }
.topbar__track span { color: white; font-weight: 700; letter-spacing: .01em; }
.topbar__track span::before { content: "⚙ "; color: var(--orange); }
.topbar__contact { color: #ffd4ad; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.header__inner { min-height: 86px; display: flex; align-items: center; gap: 24px; }
.brand img { width: 190px; height: auto; display: block; }
.site-nav { display: flex; gap: 22px; margin-left: auto; align-items: center; font-weight: 650; }
.site-nav a { color: #333; }
.site-nav a:hover { color: var(--orange); }
.quote-button, .auth-button, .primary-link, .ghost-button, .hero__search button, .quick-filter, .card-button, .pagination button, .filters__header button, .add-quote, .copy-oem, .primary-action, .chat-fab, .chat-form button, .chat-whatsapp, .chat-chip, .auth-form button, .auth-tabs button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.quote-button, .primary-link, .hero__search button, .card-button, .add-quote, .primary-action, .chat-fab, .chat-form button, .chat-whatsapp, .auth-form button {
  background: var(--orange);
  color: white;
  box-shadow: 0 14px 28px rgba(255, 122, 0, .22);
}
.quote-button strong { display: inline-grid; place-items: center; min-width: 24px; height: 24px; margin-left: 8px; border-radius: 999px; background: white; color: var(--orange); }
.ghost-button, .filters__header button, .copy-oem, .auth-button, .auth-tabs button { background: var(--orange-soft); color: var(--orange-dark); }
.quote-button:hover, .primary-link:hover, .hero__search button:hover, .card-button:hover, .add-quote:hover, .primary-action:hover, .chat-fab:hover, .chat-form button:hover, .chat-whatsapp:hover, .auth-form button:hover { background: var(--orange-dark); transform: translateY(-1px); }
.auth-button:hover, .auth-tabs button:hover { background: #ffe4cc; transform: translateY(-1px); }
.menu-toggle { display: none; margin-left: auto; border: 1px solid var(--line); background: white; border-radius: 12px; padding: 10px 12px; }

.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 75% 10%, rgba(255,122,0,.14), transparent 32%), linear-gradient(180deg, #fff, #fff7ef); padding: 72px 0 44px; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-dark); font-weight: 900; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; }
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 999px; background: currentColor; }
.eyebrow--light { color: white; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(40px, 6vw, 72px); line-height: .98; letter-spacing: -0.055em; margin: 16px 0 18px; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 10px; }
.hero__copy p { color: #4b5563; font-size: 18px; line-height: 1.7; max-width: 720px; }
.hero__search { background: white; border: 1px solid rgba(255,122,0,.22); border-radius: 24px; padding: 18px; box-shadow: var(--shadow); margin: 26px 0 22px; }
.hero__search label { font-weight: 900; display: block; margin-bottom: 10px; }
.hero__search-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
input, select { width: 100%; border: 1px solid var(--line); background: white; border-radius: 14px; padding: 13px 14px; outline: none; }
input:focus, select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,122,0,.13); }
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 640px; }
.hero__stats div { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 16px; }
.hero__stats strong { display: block; font-size: 28px; color: var(--orange-dark); }
.hero__stats span { color: var(--muted); font-weight: 700; }
.hero__panel { display: grid; gap: 16px; }
.panel-card { position: relative; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.panel-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px; border-radius: 50%; background: var(--orange-soft); }
.panel-card span { color: var(--orange-dark); font-weight: 900; }
.panel-card strong { display: block; position: relative; z-index: 1; font-size: 24px; line-height: 1.15; margin: 8px 0 20px; }
.panel-card--orange { background: var(--ink); color: white; border-color: var(--ink); }
.panel-card--orange::after { background: rgba(255,122,0,.2); }
.panel-card--orange span { color: #ffb36b; }
.quick-filter { position: relative; z-index: 1; background: var(--orange-soft); color: var(--orange-dark); }

.trust-strip { padding: 26px 0; border-bottom: 1px solid var(--line); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-strip__grid div { display: grid; gap: 4px; background: var(--soft); border-radius: 18px; padding: 18px; }
.trust-strip span { color: var(--muted); font-size: 14px; }
.section { padding: 78px 0; }
.section--soft { background: var(--soft); }
.section--orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; }
.section__heading { max-width: 760px; margin-bottom: 28px; }
.section__heading--split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.summary-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.summary-card h3 { margin-bottom: 14px; }
.bar-row { display: grid; grid-template-columns: minmax(90px, 1fr) 50px; gap: 10px; align-items: center; margin: 10px 0; font-weight: 750; color: #333; }
.bar { grid-column: 1 / -1; height: 7px; border-radius: 999px; background: var(--orange-soft); overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--orange); border-radius: inherit; }
.chip-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-cloud button, .chip { border: 1px solid rgba(255,122,0,.28); background: white; color: var(--orange-dark); border-radius: 999px; padding: 11px 15px; font-weight: 850; }
.chip-cloud button:hover { background: var(--orange); color: white; }

.catalog__layout { display: grid; grid-template-columns: 292px 1fr; gap: 28px; align-items: start; }
.filters { position: sticky; top: 106px; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.filters__header { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.filters__header h2 { font-size: 22px; margin: 0; letter-spacing: -.02em; }
.filters label { display: grid; gap: 8px; font-weight: 850; color: #303030; }
.filters__note { background: var(--orange-soft); color: #8a3c00; border-radius: 16px; padding: 14px; font-size: 14px; line-height: 1.5; }
.catalog-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.catalog-toolbar h2 { margin-bottom: 6px; }
.catalog-toolbar p { color: var(--muted); margin: 0; font-weight: 700; }
.catalog-toolbar select { max-width: 240px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card { background: white; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 12px 35px rgba(17,17,17,.06); display: flex; flex-direction: column; min-height: 100%; }
.product-media { height: 118px; background: linear-gradient(135deg, #1a1a1a, #343434); color: white; display: flex; align-items: center; justify-content: space-between; padding: 18px; position: relative; }
.product-media::after { content: ""; position: absolute; right: -35px; bottom: -70px; width: 160px; height: 160px; background: var(--orange); border-radius: 50%; opacity: .92; }
.product-media span { position: relative; z-index: 1; font-weight: 950; font-size: 28px; letter-spacing: -.04em; }
.product-media small { position: relative; z-index: 1; background: rgba(255,255,255,.16); padding: 8px 10px; border-radius: 999px; font-weight: 850; }
.product-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-brand { color: var(--orange-dark); font-weight: 950; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.product-card h3 { margin: 8px 0 10px; font-size: 18px; line-height: 1.25; letter-spacing: -.02em; }
.compat { color: #4b5563; line-height: 1.45; min-height: 44px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.meta { display: grid; gap: 8px; margin: 14px 0 18px; padding: 0; }
.meta div { display: grid; grid-template-columns: 70px 1fr; gap: 8px; align-items: baseline; font-size: 14px; }
.meta dt { color: var(--muted); font-weight: 850; }
.meta dd { margin: 0; font-weight: 700; color: #303030; word-break: break-word; }
.card-actions { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; margin-top: auto; align-items: center; }
.card-button { padding: 11px 14px; }
.card-button--buy { background: var(--ink); box-shadow: 0 14px 28px rgba(17,17,17,.16); white-space: nowrap; }
.card-button--buy:hover { background: #000; }
.icon-button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: white; color: var(--orange-dark); font-weight: 950; display: inline-grid; place-items: center; }
.icon-button:hover { border-color: var(--orange); box-shadow: 0 10px 22px rgba(255,122,0,.16); transform: translateY(-1px); }
.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 28px; }
.pagination button { background: white; border: 1px solid var(--line); color: var(--ink); padding: 10px 14px; box-shadow: none; }
.pagination button.active, .pagination button:hover { background: var(--orange); color: white; border-color: var(--orange); }

.info-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: center; }
.info-grid p { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.92); }
.info-card { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius); padding: 26px; backdrop-filter: blur(8px); }
.info-card ul { margin: 0; padding-left: 20px; line-height: 1.9; font-weight: 750; }
.contact-card { display: flex; justify-content: space-between; align-items: center; gap: 24px; background: var(--soft); border: 1px solid var(--line); border-radius: 28px; padding: 34px; }
.contact-card p { color: var(--muted); max-width: 650px; line-height: 1.6; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.footer { background: #101010; color: white; padding: 48px 0 22px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 28px; }
.footer img { width: 170px; }
.footer p, .footer span, .footer a { color: #cfcfcf; line-height: 1.7; }
.footer a, .footer span { display: block; margin: 6px 0; }
.footer h3 { color: white; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 20px; color: #b8b8b8; font-size: 14px; }

.modal { width: min(760px, calc(100% - 26px)); border: 0; border-radius: 28px; padding: 0; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.modal::backdrop { background: rgba(0,0,0,.48); backdrop-filter: blur(3px); }
.modal__close { position: absolute; right: 16px; top: 16px; width: 42px; height: 42px; border-radius: 999px; border: 0; background: var(--ink); color: white; font-size: 26px; z-index: 2; }
.modal-product { display: grid; gap: 20px; padding: 32px; }
.modal-product__head { padding-right: 40px; }
.modal-product__head h2 { font-size: 34px; }
.modal-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.modal-badges span { background: var(--orange-soft); color: var(--orange-dark); border-radius: 999px; padding: 8px 12px; font-weight: 850; }
.detail-list { display: grid; gap: 10px; }
.detail-list div { border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.detail-list dt { color: var(--muted); font-weight: 900; margin-bottom: 5px; }
.detail-list dd { margin: 0; line-height: 1.5; font-weight: 700; }
.modal-actions, .quote-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.quote-modal__content { padding: 32px; }
.quote-items { display: grid; gap: 10px; margin: 18px 0; max-height: 45vh; overflow: auto; }
.quote-item { display: grid; grid-template-columns: 1fr auto; gap: 12px; border: 1px solid var(--line); border-radius: 16px; padding: 14px; align-items: start; }
.quote-item strong { display: block; }
.quote-item span { display: block; color: var(--muted); font-size: 14px; margin-top: 4px; }
.quote-item button { border: 0; background: var(--orange-soft); color: var(--orange-dark); width: 36px; height: 36px; border-radius: 50%; font-weight: 950; }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 54px 20px; background: var(--soft); border: 1px dashed #d8d8d8; border-radius: 22px; color: var(--muted); }
.highlight { background: #fff3d8; border-radius: 6px; padding: 0 2px; }

.primary-action { background: var(--ink); color: white; box-shadow: 0 14px 28px rgba(17,17,17,.16); }
.primary-action:hover { background: #000; transform: translateY(-1px); }

.chat-widget { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: grid; justify-items: end; gap: 12px; }
.chat-fab { display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 20px 45px rgba(255,122,0,.3); }
.chat-fab span { width: 28px; height: 28px; border-radius: 50%; display: inline-grid; place-items: center; background: white; color: var(--orange-dark); font-weight: 950; }
.chat-panel { width: min(380px, calc(100vw - 32px)); background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 28px 80px rgba(17,17,17,.22); overflow: hidden; }
.chat-panel[hidden] { display: none; }
.chat-panel__head { display: flex; justify-content: space-between; align-items: start; gap: 12px; padding: 16px; background: linear-gradient(135deg, var(--ink), #2d2d2d); color: white; }
.chat-panel__head strong { display: block; font-size: 17px; }
.chat-panel__head small { display: block; color: #ffd4ad; margin-top: 3px; line-height: 1.35; }
.chat-panel__head button { width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: white; font-size: 22px; }
.chat-messages { padding: 16px; display: grid; gap: 10px; max-height: 320px; overflow: auto; background: #fffaf5; }
.chat-message { border-radius: 16px; padding: 12px 14px; line-height: 1.45; white-space: pre-wrap; font-size: 14px; }
.chat-message--bot { background: white; border: 1px solid var(--line); color: #2f2f2f; justify-self: start; }
.chat-message--user { background: var(--orange); color: white; justify-self: end; max-width: 88%; }
.chat-message p { margin: 0 0 10px; }
.chat-whatsapp { display: inline-flex; padding: 10px 14px; font-size: 14px; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 14px 0; background: white; }
.chat-chip { background: var(--orange-soft); color: var(--orange-dark); padding: 9px 12px; box-shadow: none; }
.chat-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 14px; background: white; }
.chat-form input { border-radius: 999px; padding: 12px 14px; }
.chat-form button { padding: 12px 14px; }


.modal--auth { width: min(900px, calc(100% - 26px)); }
.auth-modal { display: grid; grid-template-columns: 1fr 1.15fr; min-height: 560px; }
.auth-visual { display: grid; align-content: center; gap: 18px; padding: 34px; background: linear-gradient(135deg, #161616, #333); color: white; overflow: hidden; position: relative; }
.auth-visual::before { content: ""; position: absolute; inset: auto -80px -120px auto; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,122,0,.24); }
.auth-visual small { color: #ffd4ad; font-weight: 800; position: relative; z-index: 1; }
.auth-road { position: relative; height: 150px; border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06)); border: 1px solid rgba(255,255,255,.18); overflow: hidden; }
.auth-road::before { content: ""; position: absolute; left: 0; right: 0; top: 74px; border-top: 4px dashed rgba(255,255,255,.38); animation: roadMove 1s linear infinite; }
.auth-road::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 22px; height: 12px; border-radius: 999px; background: rgba(0,0,0,.25); filter: blur(1px); }
.auth-car { position: absolute; left: 28px; top: 52px; z-index: 2; font-size: 46px; transform-origin: center; animation: carDrive 2.2s ease-in-out infinite; }
.auth-car--success { animation: carSuccess .85s ease forwards; }
.auth-car--crash { animation: carCrash .72s cubic-bezier(.2,.9,.3,1) forwards; }
.auth-result { position: absolute; right: 28px; top: 44px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; font-size: 42px; font-weight: 950; opacity: 0; transform: scale(.7); z-index: 3; }
.auth-result--success { background: #16a34a; color: white; opacity: 1; transform: scale(1); box-shadow: 0 14px 28px rgba(22,163,74,.32); }
.auth-result--error { background: #ef4444; color: white; opacity: 1; transform: scale(1); box-shadow: 0 14px 28px rgba(239,68,68,.32); }
.auth-content { padding: 34px; }
.auth-note { color: var(--muted); line-height: 1.55; font-size: 14px; }
.auth-tabs { display: inline-flex; background: var(--orange-soft); border-radius: 999px; padding: 5px; margin: 14px 0 18px; gap: 4px; }
.auth-tabs button { box-shadow: none; padding: 10px 16px; }
.auth-tabs button.active { background: var(--orange); color: white; box-shadow: 0 10px 22px rgba(255,122,0,.22); }
.auth-form { display: none; gap: 14px; }
.auth-form.active { display: grid; }
.auth-form label { display: grid; gap: 7px; font-weight: 850; color: #343434; }
.auth-form button { justify-self: start; }
.auth-feedback { min-height: 22px; margin: 0; font-weight: 850; }
.auth-feedback.success { color: #15803d; }
.auth-feedback.error { color: #dc2626; }

@keyframes roadMove { from { transform: translateX(0); } to { transform: translateX(-48px); } }
@keyframes carDrive { 0%,100% { transform: translateX(0) translateY(0) rotate(-1deg); } 50% { transform: translateX(38px) translateY(-3px) rotate(1deg); } }
@keyframes carSuccess { 0% { transform: translateX(0) rotate(0); } 100% { transform: translateX(150px) rotate(0); } }
@keyframes carCrash { 0% { transform: translateX(0) rotate(0); } 55% { transform: translateX(118px) rotate(0); } 70% { transform: translateX(122px) rotate(-18deg); } 100% { transform: translateX(110px) translateY(18px) rotate(-36deg); } }

@media (max-width: 1080px) {
  .hero__grid, .catalog__layout, .info-grid { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .summary-grid, .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .topbar__inner { display: grid; padding: 10px 0; }
  .header__inner { min-height: 74px; }
  .brand img { width: 150px; }
  .menu-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; left: 16px; right: 16px; top: 78px; background: white; border: 1px solid var(--line); border-radius: 18px; padding: 16px; box-shadow: var(--shadow); flex-direction: column; align-items: start; }
  .site-nav.open { display: flex; }
  .quote-button, .auth-button { padding: 10px 12px; font-size: 13px; }
  .auth-modal { grid-template-columns: 1fr; }
  .auth-visual { min-height: 230px; }
  .card-actions { grid-template-columns: 1fr; }
  .icon-button { width: 100%; border-radius: 999px; }
  .chat-widget { right: 16px; bottom: 16px; }
  .chat-fab { padding: 11px 14px; }
  .hero { padding-top: 42px; }
  .hero__search-row { grid-template-columns: 1fr; }
  .hero__stats, .summary-grid, .trust-strip__grid, .product-grid, .footer__grid { grid-template-columns: 1fr; }
  .catalog-toolbar, .section__heading--split, .contact-card { display: grid; align-items: start; }
  .catalog-toolbar select { max-width: none; }
  .contact-actions { justify-content: start; }
  .modal-product, .quote-modal__content { padding: 24px 18px; }
}

/* V4: site giriş bildirim pop-up ve WhatsApp mesaj bilgilendirme */
.welcome-modal { width: min(620px, calc(100% - 26px)); }
.welcome-card { position: relative; padding: 42px; background: radial-gradient(circle at top right, rgba(255,122,0,.16), transparent 34%), white; display: grid; gap: 14px; text-align: left; }
.welcome-card h2 { margin-bottom: 4px; }
.welcome-card p { color: #4b5563; line-height: 1.75; font-size: 17px; }
.welcome-icon { width: 66px; height: 66px; border-radius: 22px; display: grid; place-items: center; background: var(--orange-soft); color: var(--orange-dark); font-size: 34px; box-shadow: 0 16px 28px rgba(255,122,0,.16); }
.welcome-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.site-toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 120%); background: #151515; color: white; border-radius: 999px; padding: 13px 18px; box-shadow: 0 18px 48px rgba(0,0,0,.25); z-index: 120; opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; font-weight: 800; font-size: 14px; max-width: calc(100% - 32px); text-align: center; }
.site-toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 760px) {
  .welcome-card { padding: 34px 20px 24px; }
  .welcome-actions { display: grid; }
  .site-toast { border-radius: 18px; bottom: 18px; }
}

/* V5: Liqui Moly ürün görselleri ve kategori düzeltmeleri */
.product-media--image {
  background: linear-gradient(180deg, #ffffff, #fff8f0);
  border-bottom: 1px solid var(--line);
  justify-content: center;
  overflow: hidden;
}
.product-media--image::after { opacity: .16; right: -46px; bottom: -84px; }
.product-media--image img {
  position: relative;
  z-index: 1;
  max-width: 78%;
  max-height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.14));
}
.product-media--image > span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 13px;
  background: rgba(22,22,22,.82);
  color: white;
  border-radius: 999px;
  padding: 7px 10px;
  letter-spacing: 0;
}
.product-media--image > small {
  position: absolute;
  right: 10px;
  top: 10px;
  background: rgba(255,122,0,.12);
  color: var(--orange-dark);
  border: 1px solid rgba(255,122,0,.22);
}
.product-media--image.image-error { background: linear-gradient(135deg, #1a1a1a, #343434); justify-content: space-between; }
.product-media--image.image-error > span { position: relative; left: auto; bottom: auto; font-size: 28px; background: transparent; padding: 0; }
.product-media--image.image-error > small { position: relative; right: auto; top: auto; background: rgba(255,255,255,.16); color: white; border: 0; }
.modal-product__image {
  display: grid;
  place-items: center;
  background: #fff8f0;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 16px;
}
.modal-product__image img {
  max-width: min(260px, 100%);
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,.16));
}

.whatsapp-message-modal {
  max-width: min(760px, calc(100vw - 28px));
}
.whatsapp-message-box {
  display: grid;
  gap: 14px;
}
.modal-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(255,122,0,.12);
  font-weight: 800;
  font-size: 13px;
}
.whatsapp-message-box textarea {
  width: 100%;
  min-height: 260px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  font: 14px/1.5 ui-monospace, SFMono-Regular, Consolas, monospace;
  background: #fffaf4;
  color: var(--ink);
}
.whatsapp-message-box small { color: var(--muted); }

/* Admin panel */
.admin-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff8ef, #fff, #f7f7f7);
  color: var(--ink);
}
.admin-shell { padding: 28px 0 60px; }
.admin-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.admin-hero h1 { margin: 4px 0; font-size: clamp(28px, 4vw, 48px); }
.admin-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 22px;
}
.admin-login {
  max-width: 460px;
  margin: 40px auto;
}
.admin-form { display: grid; gap: 14px; }
.admin-form label, .field { display: grid; gap: 7px; font-weight: 700; }
.admin-form input, .admin-form textarea, .admin-form select, .admin-toolbar input, .admin-toolbar select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: 18px;
}
.admin-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  margin-bottom: 16px;
}
.admin-table-wrap { overflow: auto; max-height: 68vh; border: 1px solid var(--line); border-radius: 18px; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 880px; }
.admin-table th, .admin-table td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-table th { position: sticky; top: 0; background: #fff7ec; z-index: 1; }
.admin-table tr:hover { background: #fffaf3; }
.admin-table button { border: 0; border-radius: 999px; padding: 8px 12px; cursor: pointer; font-weight: 800; }
.admin-edit { background: rgba(255,122,0,.12); color: var(--orange-dark); }
.admin-delete { background: rgba(200,0,0,.08); color: #b00020; }
.admin-status { color: var(--muted); margin-top: 12px; min-height: 22px; }
.admin-preview {
  min-height: 180px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #fffaf2;
  overflow: hidden;
}
.admin-preview img { max-width: 100%; max-height: 220px; object-fit: contain; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 980px) {
  .admin-hero, .admin-layout, .admin-toolbar { grid-template-columns: 1fr; display: grid; }
}

/* V8: scroll reveal, location/reviews, Instagram, stronger placeholders */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-media--placeholder {
  align-content: center;
  justify-items: start;
  gap: 8px;
  background: linear-gradient(180deg, #fff9f3, #fff3e6);
}
.product-media--placeholder > span {
  font-size: 34px;
}
.product-media--placeholder > small {
  background: rgba(255,122,0,.12);
  color: var(--orange-dark);
}
.product-media--placeholder > strong {
  font-size: 13px;
  color: #303030;
  background: rgba(17,17,17,.06);
  border-radius: 999px;
  padding: 8px 10px;
}
.product-media--placeholder > em {
  font-style: normal;
  color: var(--muted);
  font-size: 13px;
}

.modal-product__image--placeholder {
  min-height: 180px;
  background: linear-gradient(135deg, #fff8f0, #fff0de);
  border: 1px dashed rgba(255,122,0,.35);
  color: #303030;
  gap: 10px;
  text-align: center;
  padding: 22px;
}
.modal-product__image--placeholder strong {
  font-size: 20px;
  color: var(--orange-dark);
}
.modal-product__image--placeholder span {
  color: var(--muted);
  line-height: 1.6;
}
.modal-link {
  text-decoration: none;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
}
.map-card, .location-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}
.location-card {
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 14px;
}
.location-card h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 0;
}
.location-card p {
  color: #4b5563;
  line-height: 1.7;
}
.review-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  background: #fff7ef;
  color: var(--orange-dark);
  border: 1px solid rgba(255,122,0,.18);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}
.review-badge span {
  color: #6b7280;
  font-weight: 700;
}
.social-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.social-inline__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-weight: 850;
}
.social-inline__item:hover { transform: translateY(-1px); }

.floating-instagram {
  position: fixed;
  right: 24px;
  bottom: 104px;
  z-index: 58;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: radial-gradient(circle at 30% 30%, #ffd776, #f56040 45%, #c13584 72%, #405de6);
  box-shadow: 0 18px 42px rgba(193,53,132,.34);
}
.floating-instagram span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.9);
  color: #c13584;
  font-size: 14px;
  font-weight: 950;
}

@media (max-width: 1080px) {
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .floating-instagram { right: 16px; bottom: 88px; width: 52px; height: 52px; }
  .floating-instagram span { width: 38px; height: 38px; }
  .map-card iframe { min-height: 320px; }
  .location-card { padding: 22px 18px; }
}

.floating-instagram span { position: relative; }
.floating-instagram span::before { content: ""; width: 18px; height: 18px; border: 3px solid #c13584; border-radius: 6px; display: block; }
.floating-instagram span::after { content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%; border: 2px solid #c13584; left: 50%; top: 50%; transform: translate(-50%, -50%); background: transparent; }
.floating-instagram span { color: transparent; }
.admin-layout--secondary { margin-top: 24px; }

/* V10: müşteri detay paneli ve toplu görsel işlem alanları */
.admin-customer-modal {
  width: min(1100px, calc(100% - 28px));
}
.admin-customer-detail {
  padding: 34px;
  display: grid;
  gap: 18px;
}
.customer-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) 1.15fr;
  gap: 18px;
}
.admin-mini-card {
  background: #fffaf5;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}
.admin-mini-card h3 {
  margin-bottom: 10px;
}
.admin-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow: auto;
}
.admin-detail-list li {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  line-height: 1.45;
}
.admin-table button {
  margin-top: 6px;
}
@media (max-width: 900px) {
  .customer-detail-grid { grid-template-columns: 1fr; }
  .admin-customer-detail { padding: 24px 16px; }
}


/* V10.2: footer Instagram ve konum/giriş düzeltmeleri */
.footer__grid {
  align-items: start;
}
.footer-instagram,
.instagram-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ig-icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #ffd776, #f56040 45%, #c13584 72%, #405de6);
  box-shadow: 0 10px 22px rgba(193,53,132,.26);
}
.ig-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 5px;
}
.ig-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 2px solid white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.footer-instagram:hover .ig-icon,
.instagram-mini:hover .ig-icon {
  transform: translateY(-1px);
}
.location-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
}
.map-card,
.location-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}
.location-card {
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 14px;
}
.location-card h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 0;
}
.location-card p {
  color: #4b5563;
  line-height: 1.7;
}
.review-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  background: #fff7ef;
  color: var(--orange-dark);
  border: 1px solid rgba(255,122,0,.18);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}
.social-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.social-inline__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-weight: 850;
}
@media (max-width: 1080px) {
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .map-card iframe { min-height: 320px; }
  .location-card { padding: 22px 18px; }
}


.admin-log-card { margin-top: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fffaf5; padding: 16px; }
.admin-log-card h3 { margin: 0 0 10px; font-size: 18px; }
.admin-log-card pre { margin: 0; max-height: 280px; overflow: auto; background: #161616; color: #f5f5f5; border-radius: 14px; padding: 14px; font-size: 12px; line-height: 1.55; white-space: pre-wrap; word-break: break-word; }

@keyframes topbarMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.account-area {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.account-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 60;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 18px 42px rgba(17,17,17,.16);
  min-width: 150px;
}
.account-menu button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 11px 14px;
  font-weight: 850;
  background: var(--orange-soft);
  color: var(--orange-dark);
}
.account-menu button:hover {
  background: var(--orange);
  color: white;
}


/* V12: Harca Kazan / ödül sistemi */
.achievement-modal {
  width: min(720px, calc(100% - 28px));
}
.achievement-view {
  padding: 34px;
}
.achievement-lead {
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}
.achievement-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fffaf5;
  padding: 20px;
  margin: 16px 0;
}
.achievement-card--highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, #fff7ef, #fff);
  border-color: rgba(255,122,0,.24);
}
.achievement-count {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: white;
  font-size: 36px;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(255,122,0,.24);
}
.achievement-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.achievement-steps span {
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #f1f1f1;
  color: #777;
  font-weight: 950;
  font-size: 20px;
}
.achievement-steps span.active {
  background: var(--orange);
  color: white;
  box-shadow: 0 12px 24px rgba(255,122,0,.18);
}
.achievement-help {
  color: #4b5563;
  line-height: 1.7;
}
.achievement-history ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
}
.achievement-history li {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: white;
}
.achievement-mini {
  margin-top: 14px;
  border: 1px solid rgba(255,122,0,.22);
  background: #fff7ef;
  color: #5b3412;
  padding: 12px 14px;
  border-radius: 18px;
  font-weight: 800;
  line-height: 1.55;
}
#quoteItems .achievement-mini {
  margin: 0 0 12px;
}
@media (max-width: 640px) {
  .achievement-card--highlight { grid-template-columns: 1fr; }
  .achievement-count { width: 64px; height: 64px; font-size: 30px; }
}


/* V12: Hesap menüsü düzeni */
.account-menu { display: grid; gap: 8px; padding: 10px; min-width: 170px; }
.account-menu[hidden] { display: none !important; }
.account-menu button + button { margin-top: 0; }
.admin-actions--wrap { flex-wrap: wrap; }
.admin-actions--wrap button { margin-top: 0; }


/* V13: Görseli olmayan ürün kartları sadeleştirildi */
.product-media--placeholder {
  height: 118px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  gap: 8px 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,122,0,.12), transparent 30%),
    linear-gradient(135deg, #fffaf5, #ffffff 72%);
  color: var(--ink);
  border-bottom: 1px solid rgba(255,122,0,.10);
  justify-items: start;
  overflow: hidden;
}
.product-media--placeholder::after { display: none; }
.product-media--placeholder > span {
  grid-column: 1;
  grid-row: 1;
  max-width: 100%;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--orange-dark);
  background: rgba(255,122,0,.10);
  border: 1px solid rgba(255,122,0,.16);
  border-radius: 14px;
  padding: 10px 12px;
}
.product-media--placeholder > small {
  grid-column: 2;
  grid-row: 1;
  max-width: 136px;
  justify-self: end;
  color: var(--orange-dark);
  background: #fff2e5;
  border: 1px solid rgba(255,122,0,.22);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
}
.product-media--placeholder > strong {
  grid-column: 1 / -1;
  grid-row: 2;
  display: inline-flex;
  max-width: 100%;
  color: #4b5563;
  background: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-media--placeholder > strong::before {
  content: "OEM: ";
  color: #6b7280;
  font-weight: 900;
  margin-right: 4px;
}
.product-media--placeholder > em {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: end;
  color: #9ca3af;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-style: normal;
  box-shadow: 0 8px 20px rgba(17,17,17,.04);
}
.product-card .product-media--placeholder + .product-body {
  border-top: 0;
}
.product-media--image.image-error {
  background:
    radial-gradient(circle at 88% 18%, rgba(255,122,0,.12), transparent 30%),
    linear-gradient(135deg, #fffaf5, #ffffff 72%);
  color: var(--ink);
}
.product-media--image.image-error::after { display: none; }
.product-media--image.image-error > span {
  color: var(--orange-dark);
  background: rgba(255,122,0,.10);
  border: 1px solid rgba(255,122,0,.16);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 20px;
}
.product-media--image.image-error > small {
  color: var(--orange-dark);
  background: #fff2e5;
  border: 1px solid rgba(255,122,0,.22);
}

/* V14 SEO sayfaları */
.seo-page { max-width: 960px; }
.seo-page h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.05; margin: 22px 0 18px; }
.seo-page p { font-size: 18px; line-height: 1.75; color: #4b5563; margin: 14px 0; }
.seo-page .admin-mini-card { margin: 22px 0; }


/* V15: Çerez bandı, yasal sayfalar ve admin raporları */
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,122,0,.22);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(17,17,17,.18);
  backdrop-filter: blur(10px);
}
.cookie-banner p {
  margin: 6px 0 0;
  color: #4b5563;
  line-height: 1.55;
}
.cookie-banner a {
  color: var(--orange-dark);
  font-weight: 850;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.password-reset-form {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.seo-page h1 {
  font-size: clamp(34px, 5vw, 60px);
  margin: 16px 0;
}
.seo-page .admin-mini-card {
  margin: 16px 0;
}
.seo-page .admin-mini-card h2 {
  margin: 0 0 10px;
}
.seo-page .admin-mini-card p {
  color: #4b5563;
  line-height: 1.75;
}
@media (max-width: 760px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions button { flex: 1; }
}


/* V16: Kayıt sırasında yasal onay kutusu */
.legal-consent {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255,122,0,.22);
  border-radius: 16px;
  background: #fff7ef;
  color: #3f2a17;
  font-size: 13px;
  line-height: 1.5;
}
.legal-consent input {
  margin-top: 3px;
  accent-color: var(--orange);
}
.legal-consent a {
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: underline;
}
.legal-consent-note {
  margin: -6px 0 8px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
}


/* V17: Çerez bandı tıklama düzeltmesi */
.cookie-banner {
  z-index: 80;
  pointer-events: auto;
}
.cookie-banner button,
.cookie-banner a {
  pointer-events: auto;
}
.cookie-actions button {
  cursor: pointer;
  border: 0;
}
.cookie-actions #cookieAccept {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255,122,0,.22);
}
.cookie-actions #cookieReject {
  background: var(--orange-soft);
  color: var(--orange-dark);
}


/* V18: favicon + logo + cookie hotfix */
.brand img {
  width: auto;
  height: 52px;
  display: block;
}
.footer__brand img {
  width: auto;
  height: 56px;
  display: block;
}
@media (max-width: 760px) {
  .brand img { height: 44px; }
  .footer__brand img { height: 48px; }
}
.cookie-banner {
  z-index: 99999 !important;
}
.cookie-actions {
  position: relative;
  z-index: 100000;
}
.cookie-actions button {
  position: relative;
  z-index: 100001;
}
