/* ==========================================================================
   Aydinvesting — trading terminal luxury
   ========================================================================== */

:root {
  --bg: #0a0c10;
  --bg-2: #0d1015;
  --surface: #10141a;
  --raised: #151a22;
  --line: rgba(255, 255, 255, .07);
  --line-2: rgba(255, 255, 255, .12);
  --ink: #eef1f4;
  --ink-2: #c3cad2;
  --mute: #8b95a1;
  --acc: #31d492;
  --acc-soft: rgba(49, 212, 146, .12);
  --acc-deep: #0f9d68;
  --red: #e0564b;
  --f-display: "Clash Display", "Satoshi", system-ui, sans-serif;
  --f-body: "Satoshi", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --r-sm: .6rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.ayd-theme {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* Grain overlay */
body.ayd-theme::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; }
a { color: var(--acc); text-decoration: none; }
a:hover { color: #55e8ac; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 .6em;
}

.mono { font-family: var(--f-mono); }

::selection { background: rgba(49, 212, 146, .3); color: #fff; }

.ayd-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.ayd-skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
  background: var(--acc-deep);
  color: #fff;
  padding: .6rem 1rem;
}
.ayd-skip:focus { left: 1rem; top: 1rem; }

/* Scroll progress */
.ayd-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1002;
  pointer-events: none;
}
.ayd-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--acc-deep), var(--acc));
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* ==========================================================================
   Header
   ========================================================================== */
.ayd-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 12, 16, .72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.ayd-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 12, 16, .88);
}
.ayd-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.ayd-header__logo { display: flex; align-items: center; }
.ayd-header__logo img { max-height: 32px; width: auto; display: block; }
.ayd-logo-text {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
}
.ayd-logo-text span { color: var(--acc); }
.ayd-logo-text:hover { color: var(--ink); }

.ayd-nav {
  display: flex;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ayd-nav a {
  position: relative;
  display: inline-block;
  padding: .45rem .85rem;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: .93rem;
  font-weight: 500;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.ayd-nav a:hover { color: var(--ink); background: rgba(255, 255, 255, .06); }
.ayd-nav .current-menu-item > a,
.ayd-nav .current_page_item > a {
  color: var(--acc);
  background: var(--acc-soft);
}
.ayd-nav .sub-menu { display: none; }

.ayd-header__actions {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.ayd-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink-2);
  border: 1px solid var(--line);
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .15s var(--ease);
}
.ayd-cart:hover { color: var(--ink); border-color: var(--line-2); }
.ayd-cart:active { transform: scale(.94); }
.ayd-cart svg { width: 19px; height: 19px; }
.ayd-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--acc-deep);
  color: #fff;
  font-family: var(--f-mono);
  font-size: .66rem;
  font-weight: 600;
}
.ayd-cart-count[data-count="0"] { display: none; }

.ayd-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.ayd-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
body.drawer-open .ayd-burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.drawer-open .ayd-burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Drawer (mobile) */
.ayd-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 12, 16, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
body.drawer-open .ayd-drawer { opacity: 1; visibility: visible; }
.ayd-drawer__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  padding: calc(var(--header-h) + 1rem) var(--gutter) 2.5rem;
}
.ayd-drawer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.ayd-drawer__nav a {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  padding: .3rem 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .2s;
}
.ayd-drawer__nav a:hover { color: var(--acc); }
body.drawer-open .ayd-drawer__nav a { opacity: 1; transform: none; }
body.drawer-open .ayd-drawer__nav li:nth-child(1) a { transition-delay: .05s; }
body.drawer-open .ayd-drawer__nav li:nth-child(2) a { transition-delay: .1s; }
body.drawer-open .ayd-drawer__nav li:nth-child(3) a { transition-delay: .15s; }
body.drawer-open .ayd-drawer__nav li:nth-child(4) a { transition-delay: .2s; }
body.drawer-open .ayd-drawer__nav li:nth-child(5) a { transition-delay: .25s; }
body.drawer-open .ayd-drawer__nav li:nth-child(6) a { transition-delay: .3s; }
.ayd-drawer__foot {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--mute);
  font-size: .9rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.ayd-btn {
  display: inline-flex;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -.01em;
  will-change: transform;
}
/* <button> olarak kullanıldığında tarayıcının beyaz arka planını sıfırla */
button.ayd-btn {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}
.ayd-btn__inner {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 3rem;
  padding: .7rem 1.5rem;
  border-radius: inherit;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .15s var(--ease), box-shadow .25s var(--ease);
}
.ayd-btn:active .ayd-btn__inner { transform: scale(.96); }
.ayd-btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.ayd-btn:hover svg { transform: translateX(3px); }

.ayd-btn--primary .ayd-btn__inner {
  background: var(--acc-deep);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 10px 24px -10px rgba(15, 157, 104, .55);
}
.ayd-btn--primary:hover .ayd-btn__inner { background: #12b378; }
.ayd-btn--primary { color: #fff; }
.ayd-btn--primary:hover { color: #fff; }

.ayd-btn--ghost { color: var(--ink); }
.ayd-btn--ghost .ayd-btn__inner {
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .03);
  color: var(--ink);
}
.ayd-btn--ghost:hover { color: var(--ink); }
.ayd-btn--ghost:hover .ayd-btn__inner { border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .07); }

.ayd-btn--dark { color: var(--bg); }
.ayd-btn--dark .ayd-btn__inner { background: var(--ink); color: var(--bg); }
.ayd-btn--dark:hover .ayd-btn__inner { background: #fff; }

/* ==========================================================================
   Reveal animasyonları
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Ticker marquee
   ========================================================================== */
.ayd-ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: .65rem 0;
  display: flex;
  white-space: nowrap;
  user-select: none;
}
.ayd-ticker__track {
  display: inline-flex;
  gap: 2.5rem;
  padding-right: 2.5rem;
  animation: ayd-marquee 36s linear infinite;
}
.ayd-ticker:hover .ayd-ticker__track { animation-play-state: paused; }
.ayd-ticker__item {
  font-family: var(--f-mono);
  font-size: .78rem;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.ayd-ticker__item b { color: var(--ink-2); font-weight: 500; }
.ayd-ticker__item .up { color: var(--acc); }
.ayd-ticker__item .down { color: var(--red); }

@keyframes ayd-marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.ayd-hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: clip;
}
.ayd-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 130%;
  background:
    radial-gradient(46% 60% at 74% 30%, rgba(49, 212, 146, .14), transparent 65%),
    radial-gradient(30% 44% at 18% 76%, rgba(49, 212, 146, .06), transparent 60%);
  pointer-events: none;
}
.ayd-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.ayd-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--acc);
  margin: 0 0 1.1rem;
}
.ayd-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 4px var(--acc-soft);
  animation: ayd-pulse 2.4s var(--ease) infinite;
}
@keyframes ayd-pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--acc-soft); }
  50% { box-shadow: 0 0 0 8px rgba(49, 212, 146, .05); }
}
.ayd-hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.ayd-hero h1 em {
  font-style: normal;
  color: var(--acc);
}
.ayd-hero__sub {
  color: var(--mute);
  font-size: 1.08rem;
  max-width: 46ch;
  margin: 0 0 1.9rem;
}
.ayd-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.ayd-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.ayd-hero__stat b {
  display: block;
  font-family: var(--f-mono);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
}
.ayd-hero__stat span { font-size: .82rem; color: var(--mute); }

.ayd-hero__visual { position: relative; }
.ayd-hero__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 40px 80px -40px rgba(0, 0, 0, .8);
  transform: rotate(1.6deg);
  transition: transform .6s var(--ease);
}
.ayd-hero__frame:hover { transform: rotate(0deg) scale(1.01); }
.ayd-hero__frame img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.ayd-hero__chip {
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  padding: .8rem 1.1rem;
  border-radius: var(--r-md);
  background: rgba(16, 20, 26, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 20px 40px -16px rgba(0, 0, 0, .6);
  animation: ayd-float 5s ease-in-out infinite;
}
@keyframes ayd-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.ayd-hero__chip small {
  display: block;
  font-family: var(--f-mono);
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mute);
}
.ayd-hero__chip b {
  font-family: var(--f-mono);
  font-size: 1.3rem;
  color: var(--acc);
}

/* ==========================================================================
   Sections
   ========================================================================== */
.ayd-sec { padding: clamp(3rem, 7vw, 5.5rem) 0 0; }
.ayd-sec--last { padding-bottom: clamp(3rem, 7vw, 5.5rem); }
.ayd-sec__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.ayd-sec__head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  margin: 0;
  max-width: 20ch;
}
.ayd-sec__head p { color: var(--mute); max-width: 38ch; margin: 0; }

/* ==========================================================================
   Product cards (spotlight)
   ========================================================================== */
.ayd-products {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}
.ayd-pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.ayd-pcard:hover { transform: translateY(-5px); border-color: var(--line-2); }
.ayd-pcard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s var(--ease);
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(49, 212, 146, .09), transparent 45%);
}
.ayd-pcard:hover::before { opacity: 1; }
.ayd-pcard--lg { grid-column: span 7; }
.ayd-pcard--sm { grid-column: span 5; }
.ayd-pcard--third { grid-column: span 4; }
.ayd-pcard--help {
  grid-column: span 7;
  justify-content: center;
  background:
    radial-gradient(70% 120% at 90% 10%, rgba(49, 212, 146, .14), transparent 55%),
    linear-gradient(150deg, #0e1a15, var(--bg-2));
  border-color: rgba(49, 212, 146, .22);
}
.ayd-pcard--help .ayd-pcard__body { padding: 2rem; gap: .7rem; }
.ayd-pcard--help h3 { font-size: 1.5rem; max-width: 20ch; }
.ayd-pcard--help .ayd-pcard__foot { border-top: 0; padding-top: .4rem; justify-content: flex-start; }

.ayd-pcard__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.ayd-pcard--lg .ayd-pcard__media { aspect-ratio: 16 / 9; }
.ayd-pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.ayd-pcard:hover .ayd-pcard__media img { transform: scale(1.045); }
.ayd-pcard__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(10, 12, 16, .78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(49, 212, 146, .4);
  color: var(--acc);
  font-family: var(--f-mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ayd-pcard__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1.4rem 1.5rem 1.5rem;
  flex: 1;
}
.ayd-pcard__body h3 { font-size: 1.35rem; margin: 0; }
.ayd-pcard__body h3 a { color: var(--ink); transition: color .2s; }
.ayd-pcard__body h3 a:hover { color: var(--acc); }
.ayd-pcard__desc { color: var(--mute); font-size: .93rem; flex: 1; margin: 0; }
.ayd-pcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .9rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.ayd-price {
  font-family: var(--f-mono);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.ayd-price del { color: var(--mute); font-size: .85em; margin-right: .4rem; }
.ayd-price ins { text-decoration: none; color: var(--acc); }
.ayd-price .woocommerce-Price-amount { white-space: nowrap; }

/* ==========================================================================
   Steps (numbered rail)
   ========================================================================== */
.ayd-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.ayd-step {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  overflow: hidden;
}
.ayd-step::after {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: .8rem;
  top: .2rem;
  font-family: var(--f-mono);
  font-size: 4.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .045);
  line-height: 1;
}
.ayd-step h3 { font-size: 1.12rem; margin: .9rem 0 .45rem; }
.ayd-step p { color: var(--mute); font-size: .92rem; margin: 0; max-width: 32ch; }
.ayd-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: .9rem;
  background: var(--acc-soft);
  color: var(--acc);
}
.ayd-step__icon svg { width: 21px; height: 21px; }

/* ==========================================================================
   Trust band
   ========================================================================== */
.ayd-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.ayd-trust__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--surface);
}
.ayd-trust__item + .ayd-trust__item { border-left: 1px solid var(--line); }
.ayd-trust__item svg { width: 24px; height: 24px; color: var(--acc); flex: 0 0 auto; margin-top: .15rem; }
.ayd-trust__item b { display: block; font-size: .98rem; }
.ayd-trust__item span { font-size: .85rem; color: var(--mute); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.ayd-faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.ayd-faq details {
  border-bottom: 1px solid var(--line);
  padding: 0 .25rem;
}
.ayd-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--f-display);
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s;
}
.ayd-faq summary:hover { color: var(--acc); }
.ayd-faq summary::-webkit-details-marker { display: none; }
.ayd-faq__x {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}
.ayd-faq__x::before,
.ayd-faq__x::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--acc);
  transition: transform .25s var(--ease);
}
.ayd-faq__x::before { width: 100%; height: 1.5px; }
.ayd-faq__x::after { width: 1.5px; height: 100%; }
.ayd-faq details[open] .ayd-faq__x::after { transform: scaleY(0); }
.ayd-faq details p {
  margin: 0;
  padding: 0 0 1.2rem;
  color: var(--mute);
  font-size: .94rem;
  max-width: 58ch;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.ayd-cta {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(49, 212, 146, .25);
  background:
    radial-gradient(80% 140% at 85% 0%, rgba(49, 212, 146, .22), transparent 55%),
    linear-gradient(150deg, #0e1a15, var(--bg-2));
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ayd-cta h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 .5rem; }
.ayd-cta p { color: var(--mute); margin: 0; max-width: 44ch; }

/* ==========================================================================
   Footer
   ========================================================================== */
.ayd-footer {
  margin-top: clamp(3rem, 7vw, 5.5rem);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  overflow: clip;
}
.ayd-footer__word {
  display: flex;
  white-space: nowrap;
  padding: 1.6rem 0 .4rem;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .09);
  user-select: none;
}
.ayd-footer__word span {
  display: inline-block;
  animation: ayd-marquee 50s linear infinite;
}
.ayd-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.ayd-footer__brand p { color: var(--mute); font-size: .92rem; max-width: 34ch; }
.ayd-footer__brand img { max-height: 30px; width: auto; }
.ayd-footer__contact { color: var(--ink-2) !important; font-size: .84rem !important; }
.ayd-footer__col h4 {
  font-size: .78rem;
  font-family: var(--f-mono);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.1rem;
}
.ayd-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.ayd-footer__nav a {
  color: var(--ink-2);
  font-size: .93rem;
  transition: color .2s, padding-left .25s var(--ease);
}
.ayd-footer__nav a:hover { color: var(--acc); padding-left: .35rem; }
.ayd-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  color: var(--mute);
}
.ayd-footer__bottom p { margin: 0; }

/* ==========================================================================
   İç sayfalar
   ========================================================================== */
.ayd-page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(50% 90% at 70% 0%, rgba(49, 212, 146, .07), transparent 60%);
}
.ayd-page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: .4rem 0 0; }
.ayd-crumbs {
  font-family: var(--f-mono);
  font-size: .75rem;
  color: var(--mute);
  padding: 1.1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
}
.ayd-crumbs a { color: var(--mute); }
.ayd-crumbs a:hover { color: var(--acc); }
.ayd-crumb-sep { opacity: .5; margin-inline: .1rem; }
/* Rank Math breadcrumb çıktısı uyumu */
.ayd-crumbs .rank-math-breadcrumb p { margin: 0; font-size: inherit; line-height: inherit; }
.ayd-crumbs .rank-math-breadcrumb .separator { opacity: .5; margin-inline: .1rem; }
.ayd-crumbs .rank-math-breadcrumb .last { color: var(--ink-2); }

.ayd-entry { padding-block: clamp(2rem, 5vw, 3.5rem); }
.ayd-entry__content {
  max-width: 760px;
  color: var(--ink-2);
}
.ayd-entry__content h2 { font-size: 1.7rem; margin-top: 2.2rem; }
.ayd-entry__content h3 { font-size: 1.3rem; margin-top: 1.8rem; }
.ayd-entry__content p, .ayd-entry__content li { font-size: 1rem; line-height: 1.75; }
.ayd-entry__content a { text-decoration: underline; text-underline-offset: 3px; }
.ayd-entry__content img { border-radius: var(--r-md); }
.ayd-entry__content blockquote {
  margin: 1.6rem 0;
  padding: .4rem 0 .4rem 1.4rem;
  border-left: 2px solid var(--acc);
  color: var(--ink);
}
.ayd-entry__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.ayd-entry__content th, .ayd-entry__content td {
  padding: .7rem .9rem;
  border: 1px solid var(--line);
  text-align: left;
}
.ayd-entry__content th { background: var(--surface); color: var(--ink); }

/* Blog list */
.ayd-postgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  padding-block: clamp(2rem, 5vw, 3rem);
}
.ayd-postcard {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.ayd-postcard:hover { transform: translateY(-4px); border-color: var(--line-2); }
.ayd-postcard__media { aspect-ratio: 16 / 9; background: var(--bg-2); overflow: hidden; }
.ayd-postcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ayd-postcard:hover .ayd-postcard__media img { transform: scale(1.04); }
.ayd-postcard__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.ayd-postcard__body time { font-family: var(--f-mono); font-size: .72rem; color: var(--mute); text-transform: uppercase; letter-spacing: .1em; }
.ayd-postcard__body h2,
.ayd-postcard__body h3 { font-size: 1.2rem; margin: 0; }
.ayd-postcard__body h2 a,
.ayd-postcard__body h3 a { color: var(--ink); }
.ayd-postcard__body h2 a:hover,
.ayd-postcard__body h3 a:hover { color: var(--acc); }
.ayd-postcard__body p { color: var(--mute); font-size: .9rem; margin: 0; flex: 1; }

.ayd-pagination {
  display: flex;
  gap: .4rem;
  justify-content: center;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}
.ayd-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 .6rem;
  border-radius: .7rem;
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-family: var(--f-mono);
  font-size: .85rem;
  transition: border-color .2s, color .2s;
}
.ayd-pagination .page-numbers:hover { border-color: var(--acc); color: var(--acc); }
.ayd-pagination .page-numbers.current { background: var(--acc-deep); border-color: var(--acc-deep); color: #fff; }

/* 404 / search */
.ayd-empty {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  padding-block: 4rem;
}
.ayd-empty h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin: 0; }
.ayd-empty .glitch { color: var(--acc); font-family: var(--f-mono); }
.ayd-empty p { color: var(--mute); max-width: 44ch; margin: 0 0 .6rem; }

/* ==========================================================================
   Formlar (tema + Woo + eklentiler)
   ========================================================================== */
.ayd-theme input[type="text"],
.ayd-theme input[type="email"],
.ayd-theme input[type="tel"],
.ayd-theme input[type="password"],
.ayd-theme input[type="search"],
.ayd-theme input[type="number"],
.ayd-theme input[type="url"],
.ayd-theme select,
.ayd-theme textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: .7rem;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: .95rem;
  padding: .75rem 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none;
}
.ayd-theme select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b95a1' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  background-size: 14px;
  padding-right: 2.4rem;
}
.ayd-theme input:focus,
.ayd-theme select:focus,
.ayd-theme textarea:focus {
  outline: none;
  border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(49, 212, 146, .15);
}
.ayd-theme label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: .35rem;
}
.ayd-theme ::placeholder { color: var(--mute); opacity: .7; }

.ayd-theme button[type="submit"],
.ayd-theme input[type="submit"],
.ayd-theme .button,
.ayd-theme .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 3rem;
  padding: .7rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: var(--acc-deep);
  color: #fff;
  font-family: var(--f-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 10px 24px -10px rgba(15, 157, 104, .55);
  transition: background .25s var(--ease), transform .15s var(--ease);
}
.ayd-theme button[type="submit"]:hover,
.ayd-theme input[type="submit"]:hover,
.ayd-theme .button:hover,
.ayd-theme .wp-element-button:hover { background: #12b378; color: #fff; }
.ayd-theme .button:active,
.ayd-theme button[type="submit"]:active { transform: scale(.97); }

/* Woo / wc-blocks stillerinin ezdiği butonlar için güçlü geçersiz kılma.
   Not: .woocommerce sınıfı body'nin kendisinde olduğundan seçiciler body'ye zincirlenir. */
body.ayd-theme a.button,
body.ayd-theme button.button,
body.ayd-theme input.button,
body.ayd-theme a.button.alt,
body.ayd-theme button.button.alt,
body.ayd-theme input.button.alt,
body.ayd-theme #respond input#submit,
body.ayd-theme button.single_add_to_cart_button,
body.ayd-theme ul.products li.product .button {
  background: var(--acc-deep) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-family: var(--f-body);
  font-weight: 600;
  padding: .8rem 1.5rem;
  line-height: 1.4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 10px 24px -10px rgba(15, 157, 104, .55);
  transition: background .25s var(--ease), transform .15s var(--ease), opacity .2s var(--ease);
}
body.ayd-theme a.button:hover,
body.ayd-theme button.button:hover,
body.ayd-theme input.button:hover,
body.ayd-theme a.button.alt:hover,
body.ayd-theme button.button.alt:hover,
body.ayd-theme button.single_add_to_cart_button:hover,
body.ayd-theme ul.products li.product .button:hover { background: #12b378 !important; color: #fff !important; }
body.ayd-theme a.button.disabled,
body.ayd-theme button.button.disabled,
body.ayd-theme button.button:disabled,
body.ayd-theme input.button:disabled {
  background: var(--acc-deep) !important;
  color: #fff !important;
  opacity: .45;
  cursor: not-allowed;
}

/* Tekil ürün / genel indirim rozeti */
body.ayd-theme span.onsale {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: auto;
  bottom: auto;
  z-index: 5;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: .32rem .75rem;
  border-radius: 999px;
  background: var(--acc-deep);
  color: #fff;
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ==========================================================================
   WooCommerce
   ========================================================================== */
.ayd-woo-wrap { padding-bottom: clamp(2.5rem, 6vw, 4rem); }
.woocommerce-products-header { padding: 1.2rem 0 .4rem; }
.woocommerce-products-header__title { font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.woocommerce-result-count { color: var(--mute); font-family: var(--f-mono); font-size: .8rem; }
.woocommerce-ordering select { width: auto; min-width: 220px; }
.woocommerce-notices-wrapper { display: block; }

/* Shop loop grid */
.ayd-theme ul.products {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
/* Woo clearfix pseudo'ları grid'de hayalet hücre oluşturur. */
.ayd-theme ul.products::before,
.ayd-theme ul.products::after { content: none; display: none; }
.ayd-theme ul.products li.product {
  position: relative;
  display: flex;
  flex-direction: column;
  float: none;
  width: 100%;
  margin: 0;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.ayd-theme ul.products li.product:hover { transform: translateY(-5px); border-color: var(--line-2); }
.ayd-theme ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  margin: 0;
  transition: transform .5s var(--ease);
}
.ayd-theme ul.products li.product:hover a img { transform: scale(1.04); }
.ayd-theme ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  padding: 1.1rem 1.25rem .2rem;
  margin: 0;
}
.ayd-theme ul.products li.product .price {
  padding: 0 1.25rem;
  font-family: var(--f-mono);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}
.ayd-theme ul.products li.product .price del { color: var(--mute); opacity: .8; }
.ayd-theme ul.products li.product .price ins { color: var(--acc); text-decoration: none; }
.ayd-theme ul.products li.product .button {
  margin: 1rem 1.25rem 1.3rem;
  align-self: flex-start;
}
.ayd-theme ul.products li.product .onsale {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: auto;
  bottom: auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
  line-height: 1.4;
  z-index: 2;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--acc-deep);
  color: #fff;
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ayd-theme ul.products li.product .star-rating { margin: .4rem 1.25rem 0; }

/* Star rating */
.ayd-theme .star-rating {
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: .85rem;
  width: 5.4em;
  font-family: star, sans-serif;
  color: #fbbf24;
}
.ayd-theme .star-rating::before {
  content: "\2605\2605\2605\2605\2605";
  color: rgba(255, 255, 255, .2);
  position: absolute;
  top: 0;
  left: 0;
  letter-spacing: .1em;
}
.ayd-theme .star-rating span {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.5em;
}
.ayd-theme .star-rating span::before {
  content: "\2605\2605\2605\2605\2605";
  color: #fbbf24;
  position: absolute;
  top: 0;
  left: 0;
  letter-spacing: .1em;
}

/* Single product */
.ayd-theme div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-top: 1.8rem;
}
.ayd-theme div.product .woocommerce-product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.ayd-theme div.product .woocommerce-product-gallery img { display: block; width: 100%; }
.ayd-theme div.product .woocommerce-product-gallery .flex-viewport { border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden; }
.ayd-theme div.product .flex-control-thumbs {
  list-style: none;
  margin: 0;
  padding: .6rem;
  display: flex;
  gap: .5rem;
  background: var(--surface);
}
.ayd-theme div.product .flex-control-thumbs li { width: 72px; }
.ayd-theme div.product .flex-control-thumbs img {
  border-radius: .5rem;
  opacity: .55;
  cursor: pointer;
  transition: opacity .2s;
}
.ayd-theme div.product .flex-control-thumbs img.flex-active,
.ayd-theme div.product .flex-control-thumbs img:hover { opacity: 1; }

.ayd-theme div.product .summary { display: flex; flex-direction: column; gap: .9rem; }
.ayd-theme div.product .product_title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0; }
.ayd-theme div.product .summary .price {
  font-family: var(--f-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--acc);
}
.ayd-theme div.product .summary .price del { color: var(--mute); font-size: .8em; }
.ayd-theme div.product .summary .price ins { text-decoration: none; }
.ayd-theme div.product .woocommerce-product-details__short-description { color: var(--mute); }
.ayd-theme div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: stretch;
  padding: 1.2rem 0;
  border-block: 1px solid var(--line);
}
.ayd-theme div.product form.cart.variations_form { display: block; }
.ayd-theme div.product form.cart .variations { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.ayd-theme div.product form.cart .variations td { padding: .35rem 0; border: 0; }
.ayd-theme div.product form.cart .variations label { margin: 0; padding-right: 1rem; }
.ayd-theme div.product form.cart .quantity input {
  width: 5.2rem;
  text-align: center;
  font-family: var(--f-mono);
}
.ayd-theme div.product form.cart .single_add_to_cart_button {
  flex: 1;
  min-width: 220px;
  font-size: 1rem;
}
.ayd-theme .product_meta {
  font-size: .82rem;
  color: var(--mute);
  font-family: var(--f-mono);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.ayd-theme .product_meta a { color: var(--ink-2); }

/* Tabs */
.ayd-theme div.product .woocommerce-tabs { grid-column: 1 / -1; margin-top: 1.5rem; }
.ayd-theme div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: flex;
  gap: .4rem;
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.ayd-theme div.product .woocommerce-tabs ul.tabs::before,
.ayd-theme div.product .woocommerce-tabs ul.tabs::after { content: none; display: none; }
.ayd-theme div.product .woocommerce-tabs ul.tabs li,
.ayd-theme div.product .woocommerce-tabs ul.tabs li.active {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  display: inline-block;
  box-shadow: none;
}
.ayd-theme div.product .woocommerce-tabs ul.tabs li::before,
.ayd-theme div.product .woocommerce-tabs ul.tabs li::after { content: none; display: none; }
.ayd-theme div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: .75rem 1.1rem;
  color: var(--mute);
  font-weight: 500;
  font-size: .93rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.ayd-theme div.product .woocommerce-tabs ul.tabs li.active a,
.ayd-theme div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--ink);
  border-bottom-color: var(--acc);
}
.ayd-theme div.product .woocommerce-tabs .panel { color: var(--ink-2); max-width: 820px; }
.ayd-theme div.product .related.products,
.ayd-theme div.product .upsells.products { grid-column: 1 / -1; margin-top: 2rem; }
.ayd-theme div.product .related.products > h2,
.ayd-theme div.product .upsells.products > h2 { font-size: 1.6rem; }

/* Notices */
.ayd-theme .woocommerce-message,
.ayd-theme .woocommerce-info,
.ayd-theme .woocommerce-error {
  list-style: none;
  margin: 1.2rem 0;
  padding: 1rem 1.3rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  justify-content: space-between;
  font-size: .93rem;
}
.ayd-theme .woocommerce-message { border-color: rgba(49, 212, 146, .35); }
.ayd-theme .woocommerce-error { border-color: rgba(224, 86, 75, .45); }
.ayd-theme .woocommerce-error li { margin: 0; }
.ayd-theme .woocommerce-message .button,
.ayd-theme .woocommerce-info .button { order: 2; }

/* Cart */
.ayd-theme table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 1.4rem 0;
  font-size: .93rem;
}
.ayd-theme table.shop_table th,
.ayd-theme table.shop_table td {
  padding: .95rem 1.1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.ayd-theme table.shop_table thead th {
  background: var(--surface);
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mute);
}
.ayd-theme table.shop_table tbody tr:last-child td { border-bottom: 0; }
.ayd-theme table.shop_table td.product-thumbnail img {
  width: 64px;
  border-radius: .6rem;
  display: block;
}
.ayd-theme table.shop_table .product-remove a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--mute);
  font-size: 1rem;
  transition: color .2s, border-color .2s;
}
.ayd-theme table.shop_table .product-remove a:hover { color: var(--red); border-color: var(--red); }
.ayd-theme .cart_totals, .ayd-theme .cart-collaterals {
  max-width: 460px;
  margin-left: auto;
}
.ayd-theme .wc-proceed-to-checkout .checkout-button { width: 100%; font-size: 1rem; }
.ayd-theme td.actions { text-align: right; }
.ayd-theme td.actions .coupon {
  float: left;
  display: flex;
  gap: .5rem;
}
.ayd-theme td.actions .coupon input { width: 180px; }

/* Checkout */
.ayd-theme form.checkout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding-top: 1rem;
}
.ayd-theme form.checkout #customer_details { display: flex; flex-direction: column; gap: 1rem; }
.ayd-theme form.checkout .form-row { margin: 0 0 1rem; padding: 0; }
.ayd-theme form.checkout h3 { font-size: 1.25rem; margin: .5rem 0 1rem; }
.ayd-theme #order_review_heading { display: none; }
.ayd-theme form.checkout #order_review {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.ayd-theme form.checkout #order_review table.shop_table { margin-top: 0; border: 0; }
.ayd-theme form.checkout #order_review table.shop_table thead th { background: transparent; }
.ayd-theme #payment {
  background: transparent;
  border-radius: 0;
}
.ayd-theme #payment ul.payment_methods {
  list-style: none;
  margin: 0 0 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}
.ayd-theme #payment ul.payment_methods li { margin-bottom: .6rem; }
.ayd-theme #payment div.payment_box {
  background: var(--bg-2);
  border-radius: .7rem;
  padding: .9rem 1.1rem;
  margin: .5rem 0;
  font-size: .87rem;
  color: var(--mute);
}
.ayd-theme #payment #place_order { width: 100%; font-size: 1.02rem; }
.ayd-theme .woocommerce-terms-and-conditions-wrapper { font-size: .85rem; color: var(--mute); margin-bottom: 1rem; }
.ayd-theme .woocommerce-privacy-policy-text a { text-decoration: underline; }

/* ==========================================================================
   Hesabım
   ========================================================================== */

/* Klasik Woo form girdileri: eklenti/çekirdek beyaz arka planlarını ez */
body.ayd-theme .woocommerce form .form-row input.input-text,
body.ayd-theme .woocommerce form .form-row textarea,
body.ayd-theme .woocommerce form .form-row select,
body.ayd-theme input.woocommerce-Input {
  background: var(--bg-2) !important;
  border: 1px solid var(--line-2) !important;
  color: var(--ink) !important;
  border-radius: .7rem !important;
  padding: .75rem 1rem;
  box-shadow: none;
}
body.ayd-theme .woocommerce form .form-row input.input-text:focus,
body.ayd-theme input.woocommerce-Input:focus {
  border-color: var(--acc) !important;
  box-shadow: 0 0 0 3px rgba(49, 212, 146, .15) !important;
  outline: none;
}
body.ayd-theme .woocommerce form.login,
body.ayd-theme .woocommerce form.register {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0;
}
.ayd-theme input[type="checkbox"],
.ayd-theme input[type="radio"] { accent-color: var(--acc-deep); }

/* Parola göster/gizle düğmesi */
.ayd-theme .woocommerce form .password-input {
  position: relative;
  display: block;
  width: 100%;
}
.ayd-theme .woocommerce form .show-password-input {
  position: absolute;
  right: .95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b95a1' stroke-width='1.8'%3E%3Cpath d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / 20px no-repeat;
  cursor: pointer;
}
.ayd-theme .woocommerce form .show-password-input::after { display: none; content: none; }
.ayd-theme .woocommerce form .show-password-input.display-password {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2331d492' stroke-width='1.8'%3E%3Cpath d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

/* Site Kit "Google ile devam et" düğmesi altına nefes payı */
.ayd-theme .googlesitekit-sign-in-with-google__frontend-output-button { margin-bottom: 1.2rem; }

/* Genel form satırları (hesap formları) */
.ayd-theme .woocommerce form .form-row {
  margin: 0 0 1.1rem;
  padding: 0;
  float: none;
  width: 100%;
}
.ayd-theme .woocommerce form .form-row label {
  display: block;
  margin-bottom: .4rem;
  font-size: .86rem;
  color: var(--mute);
}
.ayd-theme .woocommerce form .form-row .required { color: var(--acc); text-decoration: none; }
.ayd-theme .woocommerce form .form-row input.input-text,
.ayd-theme .woocommerce form .form-row .password-input { width: 100%; }
.ayd-theme .woocommerce form .form-row .show-password-input::after { color: var(--mute); }

/* Misafir: giriş + kayıt kartları */
.ayd-theme #customer_login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  width: 100%;
  max-width: 940px;
  margin: .5rem auto 0;
  align-items: start;
}
.ayd-theme #customer_login .u-column1,
.ayd-theme #customer_login .u-column2 {
  float: none;
  width: 100%;
  max-width: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.ayd-theme #customer_login h2 {
  font-size: 1.4rem;
  margin: 0 0 1.3rem;
}
.ayd-theme .woocommerce-form-login,
.ayd-theme .woocommerce-form-register {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.ayd-theme .woocommerce-form-login__rememberme {
  display: inline-flex !important;
  align-items: center;
  gap: .5rem;
  margin-bottom: .3rem !important;
  color: var(--ink-2);
  font-size: .88rem;
}
.ayd-theme .woocommerce-form-login__submit,
.ayd-theme .woocommerce-form-register__submit { width: 100%; margin-top: .4rem; }
.ayd-theme .woocommerce-LostPassword {
  margin: .9rem 0 0;
  font-size: .86rem;
}
.ayd-theme .woocommerce-LostPassword a { color: var(--acc); }
.ayd-theme .woocommerce-privacy-policy-text {
  font-size: .82rem;
  color: var(--mute);
  margin-bottom: 1rem;
}
.ayd-theme .woocommerce-privacy-policy-text a { color: var(--acc); }

/* Giriş yapmış: kenar menü + içerik ızgarası */
body.ayd-theme.woocommerce-account.logged-in .ayd-entry .woocommerce {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
body.ayd-theme.woocommerce-account.logged-in .ayd-entry .woocommerce > .woocommerce-notices-wrapper { grid-column: 1 / -1; }
body.ayd-theme.woocommerce-account.logged-in .ayd-entry .woocommerce > .woocommerce-notices-wrapper:empty { display: none; }
/* Woo clearfix sözde öğeleri grid hücresi oluşturup düzeni kaydırıyor */
body.ayd-theme.woocommerce-account.logged-in .ayd-entry .woocommerce::before,
body.ayd-theme.woocommerce-account.logged-in .ayd-entry .woocommerce::after { display: none; content: none; }

.ayd-theme .woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
  position: sticky;
  top: calc(var(--header-h, 72px) + 1.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: .8rem;
}
.ayd-theme .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.ayd-theme .woocommerce-MyAccount-navigation a {
  display: block;
  padding: .62rem .95rem;
  border-radius: .7rem;
  color: var(--ink-2);
  font-size: .92rem;
  font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.ayd-theme .woocommerce-MyAccount-navigation a:hover {
  background: rgba(255, 255, 255, .05);
  color: var(--ink);
}
.ayd-theme .woocommerce-MyAccount-navigation li.is-active a {
  background: var(--acc-soft);
  color: var(--acc);
}
.ayd-theme .woocommerce-MyAccount-navigation-link--customer-logout a { color: var(--mute); }
.ayd-theme .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: rgba(224, 86, 75, .1);
  color: var(--red);
}

.ayd-theme .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
  color: var(--ink-2);
  line-height: 1.7;
}
.ayd-theme .woocommerce-MyAccount-content > p { margin-bottom: 1rem; }
.ayd-theme .woocommerce-MyAccount-content a:not(.button) {
  color: var(--acc);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ayd-theme .woocommerce-MyAccount-content h2,
.ayd-theme .woocommerce-MyAccount-content h3 {
  font-size: 1.3rem;
  margin: 1.6rem 0 .9rem;
}
.ayd-theme .woocommerce-MyAccount-content fieldset {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.3rem 1.3rem .4rem;
  margin: 1.4rem 0;
}
.ayd-theme .woocommerce-MyAccount-content fieldset legend {
  padding: 0 .55rem;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
}
.ayd-theme .woocommerce-EditAccountForm span em {
  display: block;
  margin-top: .35rem;
  font-size: .8rem;
  color: var(--mute);
  font-style: normal;
}

/* Sipariş numarası / tarih hücreleri */
.ayd-theme table.shop_table .woocommerce-orders-table__cell-order-number a { font-family: var(--f-mono); }
.ayd-theme table.shop_table .woocommerce-orders-table__cell-order-actions .button { padding: .5rem 1.1rem; font-size: .84rem; }

/* Adres kartları */
.ayd-theme .woocommerce-Addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}
.ayd-theme .woocommerce-Addresses .woocommerce-Address {
  float: none;
  width: 100%;
  max-width: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem;
}
.ayd-theme .woocommerce-Address-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: .7rem;
  margin-bottom: .9rem;
}
.ayd-theme .woocommerce-Address-title h3 { margin: 0; font-size: 1.05rem; }
.ayd-theme .woocommerce-Address-title .edit { font-size: .84rem; white-space: nowrap; }
.ayd-theme .woocommerce-Address address {
  font-style: normal;
  color: var(--mute);
  line-height: 1.8;
}

@media (max-width: 860px) {
  .ayd-theme #customer_login { grid-template-columns: 1fr; }
  body.ayd-theme.woocommerce-account.logged-in .ayd-entry .woocommerce { grid-template-columns: 1fr; }
  .ayd-theme .woocommerce-MyAccount-navigation {
    position: static;
    padding: .5rem;
  }
  .ayd-theme .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .3rem;
  }
  .ayd-theme .woocommerce-MyAccount-navigation a { padding: .5rem .85rem; font-size: .86rem; }
  .ayd-theme .woocommerce-Addresses { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Varyasyon seçim kartları (abonelik süresi)
   ========================================================================== */
.ayd-theme form.variations_form.ayd-has-cards table.variations,
.ayd-theme form.variations_form.ayd-has-cards .reset_variations { display: none; }

.ayd-var-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: .75rem;
  margin: .3rem 0 1.4rem;
}
.ayd-var-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  padding: 1rem 1.05rem .95rem;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  color: var(--ink-2);
  font-family: var(--f-body);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .25s var(--ease), transform .18s var(--ease), box-shadow .25s var(--ease);
}
.ayd-var-card:hover {
  border-color: rgba(49, 212, 146, .5);
  transform: translateY(-2px);
}
.ayd-var-card.is-active {
  border-color: var(--acc);
  background: var(--acc-soft);
  box-shadow: 0 8px 28px -14px rgba(49, 212, 146, .45);
}
/* Aktif kart onay işareti (sağ altta; üstteki avantaj rozetiyle çakışmasın) */
.ayd-var-card::after {
  content: "";
  position: absolute;
  right: .8rem;
  bottom: .95rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: all .2s var(--ease);
}
.ayd-var-card.is-active::after {
  border-color: var(--acc);
  background: var(--acc) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23071009' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.ayd-var-card__label {
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mute);
  padding-right: 1.6rem;
}
.ayd-var-card.is-active .ayd-var-card__label { color: var(--acc); }
.ayd-var-card__price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.3;
}
.ayd-var-card__price del {
  color: var(--mute);
  font-weight: 500;
  font-size: .82em;
  margin-right: .35em;
}
.ayd-var-card__price ins { text-decoration: none; color: var(--ink); }
.ayd-var-card__hint {
  font-family: var(--f-mono);
  font-size: .76rem;
  color: var(--mute);
}
.ayd-var-card__badge {
  position: absolute;
  top: -9px;
  right: .7rem;
  background: var(--acc-deep);
  color: #fff;
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .04em;
  padding: .18rem .55rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px -4px rgba(15, 157, 104, .6);
}
/* Form içindeki tekrar eden varyasyon fiyatını gizle (ana fiyat canlı güncelleniyor) */
.ayd-theme form.variations_form.ayd-has-cards .woocommerce-variation-price { display: none; }

@media (max-width: 560px) {
  .ayd-var-cards { grid-template-columns: 1fr; }
  .ayd-var-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .2rem .8rem;
    padding-right: 2.6rem;
  }
  .ayd-var-card::after {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .ayd-var-card__label { width: 100%; padding-right: 0; }
  .ayd-var-card__badge { top: -8px; right: 2.2rem; }
}

/* "’den başlayan" başlangıç fiyatı etiketi */
.ayd-price-from {
  font-size: .48em;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0;
  margin-left: .1em;
}

/* Quantity */
.ayd-theme .quantity { display: inline-flex; }
.ayd-theme .quantity .qty { width: 4.6rem; text-align: center; font-family: var(--f-mono); }

/* Ödeme sırasında PayTR iframe alanı */
.ayd-theme #paytr_iframe, .ayd-theme iframe[src*="paytr"] {
  border-radius: var(--r-md);
  background: #fff;
}

/* ==========================================================================
   WooCommerce Blocks (blok tabanlı sepet + ödeme) — karanlık tema
   ========================================================================== */

/* Tam genişlik içerik sarmalayıcı (sepet/ödeme/hesap) */
.ayd-entry__wide { width: 100%; }
.ayd-entry__wide .alignwide,
.ayd-entry__wide .wp-block-woocommerce-cart,
.ayd-entry__wide .wp-block-woocommerce-checkout {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.ayd-page-hero--compact { padding-bottom: 1.5rem; }

/* Blok metin renkleri */
body.ayd-theme .wc-block-components-sidebar-layout,
body.ayd-theme .wp-block-woocommerce-checkout,
body.ayd-theme .wp-block-woocommerce-cart { color: var(--ink-2); }
body.ayd-theme .wc-block-components-title,
body.ayd-theme .wc-block-components-checkout-step__title,
body.ayd-theme .wc-block-components-product-name,
body.ayd-theme .wc-block-components-totals-item__label,
body.ayd-theme .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.ayd-theme .wc-block-cart__totals-title { color: var(--ink); }
body.ayd-theme .wc-block-components-checkout-step__description,
body.ayd-theme .wc-block-components-product-metadata,
body.ayd-theme .wc-block-components-product-details { color: var(--mute); }
body.ayd-theme .wc-block-components-product-name { text-decoration: none; font-weight: 600; }
body.ayd-theme .wc-block-components-product-price,
body.ayd-theme .wc-block-components-totals-item__value,
body.ayd-theme .wc-block-formatted-money-amount {
  font-family: var(--f-mono);
  color: var(--ink);
}
body.ayd-theme .wc-block-components-product-price del { color: var(--mute); }
body.ayd-theme .wc-block-components-product-price ins { color: var(--acc); text-decoration: none; }
body.ayd-theme .wc-block-components-sale-badge {
  background: var(--acc-soft);
  color: var(--acc);
  border: 0;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: .68rem;
}

/* Form girdileri: beyaz arka planları ez */
body.ayd-theme .wc-block-components-text-input input[type="text"],
body.ayd-theme .wc-block-components-text-input input[type="email"],
body.ayd-theme .wc-block-components-text-input input[type="tel"],
body.ayd-theme .wc-block-components-text-input input[type="password"],
body.ayd-theme .wc-block-components-text-input input[type="number"],
body.ayd-theme .wc-block-components-text-input input[type="url"],
body.ayd-theme .wc-block-components-textarea,
body.ayd-theme .wc-block-components-combobox .components-combobox-control__input,
body.ayd-theme .wc-block-components-form .wc-block-components-text-input input,
body.ayd-theme .wc-block-components-select .wc-block-components-select__select,
body.ayd-theme select.wc-block-components-select__select {
  background: var(--bg-2) !important;
  border: 1px solid var(--line-2) !important;
  color: var(--ink) !important;
  border-radius: .7rem !important;
  box-shadow: none;
}
body.ayd-theme .wc-block-components-text-input input:focus,
body.ayd-theme .wc-block-components-textarea:focus,
body.ayd-theme .wc-block-components-combobox .components-combobox-control__input:focus,
body.ayd-theme .wc-block-components-select .wc-block-components-select__select:focus {
  border-color: var(--acc) !important;
  box-shadow: 0 0 0 3px rgba(49, 212, 146, .15) !important;
  outline: none;
}
/* Ülke / şehir açılır kutuları (dikkat: sınıf adı "wc-blocks-..." şeklinde) */
body.ayd-theme .wc-blocks-components-select__container {
  background: var(--bg-2) !important;
  border: 1px solid var(--line-2) !important;
  border-radius: .7rem !important;
  box-shadow: none;
}
body.ayd-theme .wc-blocks-components-select__select {
  background: transparent !important;
  color: var(--ink) !important;
  border: 0 !important;
}
body.ayd-theme .wc-blocks-components-select__select option {
  background: var(--bg-2);
  color: var(--ink);
}
body.ayd-theme .wc-blocks-components-select__label { color: var(--mute); }
body.ayd-theme .wc-blocks-components-select__expander { color: var(--mute); }
body.ayd-theme .wc-blocks-components-select__container:focus-within {
  border-color: var(--acc) !important;
  box-shadow: 0 0 0 3px rgba(49, 212, 146, .15) !important;
}

/* İç yüzen etiketler */
body.ayd-theme .wc-block-components-text-input label,
body.ayd-theme .wc-block-components-combobox .components-base-control__label,
body.ayd-theme .wc-block-components-select .wc-block-components-select__label,
body.ayd-theme .wc-block-components-form label { color: var(--mute); }
body.ayd-theme .wc-block-components-text-input.is-active label { color: var(--acc); }

/* Onay kutuları ve radyolar */
body.ayd-theme .wc-block-components-checkbox .wc-block-components-checkbox__input,
body.ayd-theme .wc-block-components-radio-control__input {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  accent-color: var(--acc-deep);
}
body.ayd-theme .wc-block-components-checkbox .wc-block-components-checkbox__input:checked {
  background: var(--acc-deep);
  border-color: var(--acc-deep);
}
body.ayd-theme .wc-block-components-checkbox__mark { color: #fff; }
body.ayd-theme .wc-block-components-checkbox label,
body.ayd-theme .wc-block-components-radio-control__label { color: var(--ink-2); }
body.ayd-theme .wc-block-components-radio-control__input:checked { border-color: var(--acc); }
body.ayd-theme .wc-block-components-radio-control__input:checked::before { background: var(--acc); }

/* Adım/bölüm ayraçları */
body.ayd-theme .wc-block-components-checkout-step,
body.ayd-theme .wc-block-components-totals-wrapper,
body.ayd-theme .wc-block-components-order-summary,
body.ayd-theme .wc-block-components-panel,
body.ayd-theme .wc-block-cart-items,
body.ayd-theme .wc-block-cart-items td,
body.ayd-theme .wc-block-cart-items th { border-color: var(--line) !important; }
body.ayd-theme .wc-block-components-divider { border-color: var(--line); }

/* Sipariş özeti / kenar çubuğu: konteyner hizası ve panel görünümü */
body.ayd-theme .wc-block-components-sidebar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  box-sizing: border-box;
}
body.ayd-theme .wc-block-components-sidebar .wc-block-components-panel,
body.ayd-theme .wc-block-components-sidebar .wc-block-components-totals-wrapper { background: transparent; }
body.ayd-theme .wc-block-components-panel__button {
  color: var(--ink);
  font-weight: 600;
}
body.ayd-theme .wc-block-components-panel__button:hover { color: var(--acc); }
body.ayd-theme .wc-block-components-totals-coupon__button { margin-left: .5rem; }

/* Sepet tablosu */
body.ayd-theme .wc-block-cart-items__row { border-color: var(--line); }
body.ayd-theme .wc-block-cart-item__image img {
  border-radius: .7rem;
  border: 1px solid var(--line);
}
body.ayd-theme .wc-block-cart-item__remove-link {
  color: var(--mute);
  text-decoration: none;
}
body.ayd-theme .wc-block-cart-item__remove-link:hover { color: var(--red); }

/* Adet seçici */
body.ayd-theme .wc-block-components-quantity-selector {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: .6rem;
}
body.ayd-theme .wc-block-components-quantity-selector::after { border: 0; }
body.ayd-theme .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  background: transparent;
  color: var(--ink);
  font-family: var(--f-mono);
  border: 0;
}
body.ayd-theme .wc-block-components-quantity-selector button {
  color: var(--ink-2);
  background: transparent;
  border: 0;
  box-shadow: none;
}
body.ayd-theme .wc-block-components-quantity-selector button:hover { color: var(--acc); }

/* Ödeme yöntemleri akordeonu */
body.ayd-theme .wc-block-components-radio-control-accordion-option,
body.ayd-theme .wc-block-checkout__payment-method .wc-block-components-radio-control__option {
  background: var(--bg-2);
  border-color: var(--line) !important;
  color: var(--ink-2);
}
body.ayd-theme .wc-block-components-radio-control-accordion-content {
  background: var(--bg-2);
  color: var(--mute);
}

/* Bildirim bantları */
body.ayd-theme .wc-block-components-notice-banner {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  color: var(--ink-2);
}
body.ayd-theme .wc-block-components-notice-banner.is-success { border-color: rgba(49, 212, 146, .4); }
body.ayd-theme .wc-block-components-notice-banner.is-error { border-color: rgba(224, 86, 75, .5); }
body.ayd-theme .wc-block-components-notice-banner svg { fill: var(--acc); }
body.ayd-theme .wc-block-components-notice-banner.is-error svg { fill: var(--red); }

/* Blok butonları (Ödemeye git / Siparişi tamamla) */
body.ayd-theme .wc-block-components-button:not(.is-link),
body.ayd-theme .wc-block-components-checkout-place-order-button,
body.ayd-theme .wc-block-cart__submit-button {
  background: var(--acc-deep) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-family: var(--f-body);
  font-weight: 600;
  min-height: 3rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 10px 24px -10px rgba(15, 157, 104, .55);
  transition: background .25s var(--ease), transform .15s var(--ease);
}
body.ayd-theme .wc-block-components-button:not(.is-link):hover { background: #12b378 !important; }
body.ayd-theme .wc-block-components-button:not(.is-link):active { transform: scale(.98); }
body.ayd-theme .wc-block-components-button.is-link { color: var(--acc); }

/* Cross-sell ("İlginizi çekebilir") ürünleri */
body.ayd-theme .cross-sells-product .wc-block-components-product-image img,
body.ayd-theme .wp-block-woocommerce-cart-cross-sells-block img {
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
body.ayd-theme .cross-sells-product .wc-block-components-product-name { color: var(--ink); }

/* Giriş istemi / dönüş linkleri */
body.ayd-theme .wc-block-checkout__login-prompt,
body.ayd-theme .wc-block-components-checkout-return-to-cart-button { color: var(--acc); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1023px) {
  .ayd-products { grid-template-columns: 1fr 1fr; }
  .ayd-pcard--lg, .ayd-pcard--sm, .ayd-pcard--third, .ayd-pcard--help { grid-column: span 1; }
  .ayd-theme ul.products { grid-template-columns: 1fr 1fr; }
  .ayd-postgrid { grid-template-columns: 1fr 1fr; }
  .ayd-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .ayd-header__nav, .ayd-header__cta { display: none; }
  .ayd-burger { display: flex; }
  .ayd-hero__grid { grid-template-columns: 1fr; }
  .ayd-hero__visual { max-width: 460px; }
  .ayd-hero__chip { left: 1rem; }
  .ayd-sec__head { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .ayd-steps { grid-template-columns: 1fr; }
  .ayd-trust { grid-template-columns: 1fr; }
  .ayd-trust__item + .ayd-trust__item { border-left: 0; border-top: 1px solid var(--line); }
  .ayd-faq-grid { grid-template-columns: 1fr; }
  .ayd-theme div.product { grid-template-columns: 1fr; }
  .ayd-theme div.product .woocommerce-product-gallery { position: static; }
  .ayd-theme form.checkout { grid-template-columns: 1fr; }
  .ayd-theme form.checkout #order_review { position: static; }
  .ayd-theme .cart_totals, .ayd-theme .cart-collaterals { max-width: none; }
}

@media (max-width: 640px) {
  .ayd-products { grid-template-columns: 1fr; }
  .ayd-theme ul.products { grid-template-columns: 1fr; }
  .ayd-postgrid { grid-template-columns: 1fr; }
  .ayd-footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .ayd-cta { flex-direction: column; align-items: flex-start; }
  .ayd-theme td.actions .coupon { float: none; width: 100%; margin-bottom: .8rem; }
  .ayd-theme td.actions .coupon input { flex: 1; width: auto; }
  .ayd-hero__stats { gap: 1.4rem; }
}

/* ==========================================================================
   Kayan mum grafiği arka plan efekti (help kartı + CTA)
   ========================================================================== */
:root {
  --ayd-candles: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='120' viewBox='0 0 260 120'%3E%3Crect x='11' y='22' width='2' height='66' fill='%2331d492'/%3E%3Crect x='6' y='38' width='12' height='30' rx='1.5' fill='%2331d492'/%3E%3Crect x='43' y='34' width='2' height='64' fill='%23e0564b'/%3E%3Crect x='38' y='52' width='12' height='26' rx='1.5' fill='%23e0564b'/%3E%3Crect x='75' y='12' width='2' height='66' fill='%2331d492'/%3E%3Crect x='70' y='26' width='12' height='34' rx='1.5' fill='%2331d492'/%3E%3Crect x='107' y='40' width='2' height='62' fill='%23e0564b'/%3E%3Crect x='102' y='58' width='12' height='24' rx='1.5' fill='%23e0564b'/%3E%3Crect x='139' y='18' width='2' height='64' fill='%2331d492'/%3E%3Crect x='134' y='32' width='12' height='30' rx='1.5' fill='%2331d492'/%3E%3Crect x='171' y='28' width='2' height='64' fill='%2331d492'/%3E%3Crect x='166' y='46' width='12' height='28' rx='1.5' fill='%2331d492'/%3E%3Crect x='203' y='36' width='2' height='60' fill='%23e0564b'/%3E%3Crect x='198' y='52' width='12' height='24' rx='1.5' fill='%23e0564b'/%3E%3Crect x='235' y='10' width='2' height='68' fill='%2331d492'/%3E%3Crect x='230' y='22' width='12' height='36' rx='1.5' fill='%2331d492'/%3E%3C/svg%3E");
}

.ayd-pcard--help::after,
.ayd-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: -260px;
  bottom: -8px;
  height: 110px;
  z-index: 0;
  pointer-events: none;
  background: var(--ayd-candles) repeat-x bottom / 260px 120px;
  opacity: .1;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, .9), transparent);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, .9), transparent);
  animation: ayd-candle-drift 46s linear infinite;
  will-change: transform;
}
.ayd-pcard--help .ayd-pcard__body,
.ayd-cta > * { position: relative; z-index: 1; }

@keyframes ayd-candle-drift {
  to { transform: translateX(-260px); }
}

@media (prefers-reduced-motion: reduce) {
  .ayd-pcard--help::after,
  .ayd-cta::after { animation: none; }
}

/* ==========================================================================
   Dokümantasyon sayfası
   ========================================================================== */
.ayd-doc-hero h1 { max-width: 18ch; }
.ayd-doc-hero__sub { color: var(--mute); max-width: 52ch; margin: 1rem 0 0; line-height: 1.7; }
.ayd-doc-jump {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.6rem;
}
.ayd-doc-jump a {
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .06em;
  color: var(--ink-2);
  padding: .45rem .95rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.ayd-doc-jump a:hover { border-color: var(--acc); color: var(--acc); background: var(--acc-soft); }

/* Bölüm çapaları sabit header'ın altına gelmesin */
section[id] { scroll-margin-top: calc(var(--header-h, 72px) + 16px); }

/* Adım adım zaman çizelgesi */
.ayd-doc-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 780px;
  position: relative;
}
.ayd-doc-steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, var(--acc), var(--line) 70%);
  opacity: .5;
}
.ayd-doc-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.4rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.ayd-doc-step__num {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--bg-2);
  border: 1px solid rgba(49, 212, 146, .4);
  border-radius: 50%;
  font-family: var(--f-mono);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--acc);
  box-shadow: 0 0 0 6px var(--bg), 0 0 24px -6px rgba(49, 212, 146, .35);
}
.ayd-doc-step__body h3 { font-size: 1.25rem; margin: .55rem 0 .5rem; }
.ayd-doc-step__body > p { color: var(--mute); line-height: 1.7; margin: 0 0 1rem; max-width: 58ch; }
.ayd-doc-step__note {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .8rem 1rem;
  background: var(--acc-soft);
  border: 1px solid rgba(49, 212, 146, .25);
  border-radius: var(--r-md);
  color: var(--ink-2);
  font-size: .88rem;
  line-height: 1.6;
  max-width: 58ch;
}
.ayd-doc-step__note svg { width: 17px; height: 17px; flex: none; margin-top: .15rem; color: var(--acc); }
.ayd-doc-step__note--warn {
  background: rgba(224, 86, 75, .08);
  border-color: rgba(224, 86, 75, .3);
}
.ayd-doc-step__note--warn svg { color: #e0564b; }
.ayd-doc-step__done {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 1rem 0 0;
  color: var(--acc);
  font-weight: 600;
  font-size: .95rem;
}
.ayd-doc-step__done svg { width: 18px; height: 18px; }

/* TradingView menü yolu */
.ayd-path {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem;
  padding: .9rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  font-family: var(--f-mono);
  font-size: .8rem;
}
.ayd-path span {
  padding: .35rem .75rem;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  color: var(--ink-2);
  white-space: nowrap;
}
.ayd-path span.is-acc {
  color: var(--acc);
  border-color: rgba(49, 212, 146, .45);
  background: var(--acc-soft);
}
.ayd-path svg { width: 14px; height: 14px; color: var(--mute); flex: none; }

/* İndikatör kılavuz kartları */
.ayd-doc-guides { display: grid; gap: 1.2rem; }
.ayd-doc-guide {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.ayd-doc-guide:hover { border-color: var(--line-2); transform: translateY(-3px); }
.ayd-doc-guide__media {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
}
.ayd-doc-guide__media img { display: block; width: 100%; height: auto; }
.ayd-doc-guide__body h3 { font-size: 1.2rem; margin: 0 0 .3rem; }
.ayd-doc-guide__tag {
  color: var(--acc);
  font-size: .9rem;
  font-weight: 500;
  margin: 0 0 .9rem;
}
.ayd-doc-guide__reads {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: .5rem;
}
.ayd-doc-guide__reads li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-2);
  font-size: .92rem;
  line-height: 1.6;
}
.ayd-doc-guide__reads li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .4rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--acc-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2331d492' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 8px no-repeat;
  border: 1px solid rgba(49, 212, 146, .35);
}
.ayd-doc-guide__links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.ayd-doc-guide__more {
  font-family: var(--f-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--mute);
  transition: color .2s var(--ease);
}
.ayd-doc-guide__more:hover { color: var(--acc); }

/* Sinyal sözlüğü */
.ayd-gloss {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
.ayd-gloss__item {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.15rem 1.2rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.ayd-gloss__item:hover { border-color: rgba(49, 212, 146, .4); transform: translateY(-3px); }
.ayd-gloss__item b {
  font-family: var(--f-mono);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--acc);
}
.ayd-gloss__item span { color: var(--mute); font-size: .87rem; line-height: 1.6; }

@media (max-width: 1023px) {
  .ayd-gloss { grid-template-columns: 1fr 1fr; }
  .ayd-doc-guide { grid-template-columns: 1fr; }
  .ayd-doc-guide__media { max-width: 340px; }
}

@media (max-width: 560px) {
  .ayd-gloss { grid-template-columns: 1fr; }
  .ayd-doc-steps::before { left: 21px; }
  .ayd-doc-step { grid-template-columns: 44px 1fr; gap: 1rem; }
  .ayd-doc-step__num { width: 44px; height: 44px; font-size: 1rem; }
}

/* ==========================================================================
   Yazı detay: iki kolon + içindekiler + ilgili yazılar
   ========================================================================== */
.ayd-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1rem;
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mute);
}
.ayd-post-meta__cat {
  color: var(--acc);
  border: 1px solid rgba(49, 212, 146, .35);
  border-radius: 999px;
  padding: .22rem .7rem;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.ayd-post-meta__cat:hover { background: var(--acc-soft); }

.ayd-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  justify-content: space-between;
}
.ayd-post-thumb {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  margin-bottom: 1.8rem;
}
.ayd-post-side {
  position: sticky;
  top: calc(var(--header-h, 72px) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Sabit header'ın altına gelmemesi için çapa hedeflerine boşluk */
.ayd-entry__content h2[id],
.ayd-entry__content h3[id] { scroll-margin-top: calc(var(--header-h, 72px) + 24px); }

/* İçindekiler */
.ayd-toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.ayd-toc summary {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.15rem;
  font-family: var(--f-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.ayd-toc summary::-webkit-details-marker { display: none; }
.ayd-toc summary::after {
  content: "";
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--mute);
  border-bottom: 1.5px solid var(--mute);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
}
.ayd-toc[open] summary::after { transform: rotate(-135deg); }
.ayd-toc summary svg { width: 15px; height: 15px; color: var(--acc); }
.ayd-toc nav {
  max-height: min(52vh, 420px);
  overflow-y: auto;
  padding: 0 .6rem .8rem;
}
.ayd-toc ul { list-style: none; margin: 0; padding: 0; }
.ayd-toc li a {
  display: block;
  padding: .42rem .6rem;
  border-left: 2px solid transparent;
  border-radius: 0 var(--r-sm, 8px) var(--r-sm, 8px) 0;
  color: var(--mute);
  font-size: .84rem;
  line-height: 1.45;
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.ayd-toc li a:hover { color: var(--ink); background: rgba(255, 255, 255, .04); }
.ayd-toc li a.is-active {
  color: var(--acc);
  border-left-color: var(--acc);
  background: var(--acc-soft);
}
.ayd-toc .ayd-toc__l3 a { padding-left: 1.5rem; font-size: .8rem; }

/* Kenar CTA kartı */
.ayd-side-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 120% at 85% 0%, rgba(49, 212, 146, .16), transparent 55%),
    linear-gradient(160deg, #0e1a15, var(--surface));
  border: 1px solid rgba(49, 212, 146, .25);
  border-radius: var(--r-md);
  padding: 1.4rem 1.3rem 1.5rem;
}
.ayd-side-cta h3 { font-size: 1.1rem; margin: .45rem 0 .55rem; }
.ayd-side-cta p:not(.ayd-kicker) { color: var(--mute); font-size: .86rem; margin: 0 0 1.1rem; }
.ayd-side-cta .ayd-btn { width: 100%; }
.ayd-side-cta .ayd-btn__inner { width: 100%; justify-content: center; }

/* İlgili yazılar */
.ayd-post-related { margin-top: clamp(3rem, 7vw, 5rem); }
.ayd-post-related > h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0 0 1.4rem; }

@media (max-width: 1023px) {
  .ayd-post-layout { grid-template-columns: 1fr; }
  .ayd-post-side { display: contents; }
  .ayd-toc { order: -1; margin-bottom: .4rem; }
  .ayd-side-cta { order: 2; }
}

/* ==========================================================================
   İndikatör bulucu test modalı
   ========================================================================== */
.ayd-quiz {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s var(--ease), visibility 0s .3s;
}
.ayd-quiz.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity .3s var(--ease);
}
.ayd-quiz__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 8, .78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ayd-quiz__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100dvh - 2.4rem);
  overflow-y: auto;
  background: linear-gradient(160deg, #0e1a15, var(--surface));
  border: 1px solid rgba(49, 212, 146, .25);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .7);
  transform: translateY(14px) scale(.98);
  transition: transform .35s var(--ease);
}
.ayd-quiz.is-open .ayd-quiz__panel { transform: none; }
.ayd-quiz__x {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--mute);
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.ayd-quiz__x:hover { color: var(--ink); border-color: var(--acc); }
.ayd-quiz__x svg { width: 16px; height: 16px; }
.ayd-quiz__progress {
  height: 3px;
  background: var(--line);
  border-radius: 999px;
  margin: 0 2.4rem 1.6rem 0;
  overflow: hidden;
}
.ayd-quiz__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--acc);
  border-radius: inherit;
  transition: width .4s var(--ease);
}
.ayd-quiz__step { display: none; }
.ayd-quiz__step.is-active { display: block; animation: ayd-quiz-in .35s var(--ease) both; }
@keyframes ayd-quiz-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.ayd-quiz__step h3 {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  margin: .35rem 0 1.2rem;
}
.ayd-quiz__opts { display: grid; gap: .7rem; }
.ayd-quiz__opts button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 1.15rem;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  color: var(--ink-2);
  font-family: var(--f-body);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .25s var(--ease), transform .18s var(--ease);
}
.ayd-quiz__opts button:hover {
  border-color: var(--acc);
  background: var(--acc-soft);
  transform: translateX(4px);
}
.ayd-quiz__results { animation: ayd-quiz-in .4s var(--ease) both; }
.ayd-quiz [hidden] { display: none !important; }
.ayd-quiz__result {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.2rem;
  align-items: start;
  margin-top: .8rem;
}
.ayd-quiz__result-media {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
}
.ayd-quiz__result-media img { display: block; width: 100%; height: auto; }
.ayd-quiz__result-body h3 { font-size: 1.15rem; margin: 0 0 .5rem; }
.ayd-quiz__result-body p { color: var(--mute); font-size: .9rem; margin: 0 0 .8rem; }
.ayd-quiz__result-body .ayd-price { display: block; margin-bottom: 1rem; }
.ayd-quiz__result-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.ayd-quiz__restart {
  background: none;
  border: 0;
  padding: 0;
  color: var(--mute);
  font-family: var(--f-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color .2s var(--ease);
}
.ayd-quiz__restart:hover { color: var(--acc); }

@media (max-width: 480px) {
  .ayd-quiz__result { grid-template-columns: 1fr; }
  .ayd-quiz__result-media { max-width: 200px; }
}
