/*
Theme Name: Fiyonk Toys — Kadence Child
Template: kadence
Version: 1.0.0
Description: Durable Fiyonk Toys customizations on top of Kadence. Kadence core files are never edited.
*/

/* Kadence's global accent color (--global-palette1, used by default for
   buttons/links/submits everywhere: forms, WooCommerce, pagination, etc.)
   is blue out of the box. Override it site-wide instead of chasing every
   individual button selector. */
:root {
  --global-palette1: #000000 !important;
  --global-palette2: #1a1a1a !important;
}

.fiyonk-brand-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fiyonk-brand-list li {
  margin: 0 0 10px;
}

.fiyonk-brand-list a {
  color: #555;
  text-decoration: none;
}

.fiyonk-brand-list a:hover {
  color: #000;
}

/* ==========================================================================
   Shop/brand archive: toggleable filter sidebar. Hidden by default (full-
   width, more columns); revealed on click (narrower grid, filters visible).
   ========================================================================== */

.fiyonk-filter-toggle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.35);
  color: #000;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.fiyonk-filter-toggle:hover {
  border-color: #000;
}

body.has-sidebar .content-container {
  grid-template-columns: 1fr !important;
}

body.has-sidebar #secondary,
body.has-sidebar .widget-area {
  display: none;
}

body.has-sidebar.fiyonk-filters-open .content-container {
  grid-template-columns: 1fr 320px !important;
}

body.has-sidebar.fiyonk-filters-open #secondary,
body.has-sidebar.fiyonk-filters-open .widget-area {
  display: block;
}

/* Below ~600px there's no room for a 320px side column next to the product
   grid — it squeezed products into an unusable sliver. Stack instead, with
   the filters above the results (they're what the tap was for). Kadence
   itself switches .content-container to display:block at this width, where
   `order` has no effect at all — it only works inside flex/grid — so this
   has to force its own flex context to make the reorder actually happen. */
@media (max-width: 600px) {
  body.has-sidebar.fiyonk-filters-open .content-container {
    display: flex !important;
    flex-direction: column !important;
  }

  body.has-sidebar.fiyonk-filters-open #secondary,
  body.has-sidebar.fiyonk-filters-open .widget-area {
    order: -1;
  }
}

/* Product grid columns: 6/4 desktop, 4/3 tablet (off/on), 2 mobile always.
   Scoped to :not(.single-product) — this was leaking into the "related
   products" grid on single product pages (same ul.products markup),
   forcing 6 empty-track columns there and leaving a short row flush-left
   instead of centered. */
@media (min-width: 1025px) {
  body:not(.fiyonk-filters-open):not(.single-product) ul.products {
    grid-template-columns: repeat(6, 1fr) !important;
  }
  body.fiyonk-filters-open:not(.single-product) ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  body:not(.fiyonk-filters-open):not(.single-product) ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  body.fiyonk-filters-open:not(.single-product) ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Nose Paris-style finish: white ground, hairline dividers instead of boxes/shadows. */
body {
  background: #ffffff;
  font-family: "Jost", sans-serif !important;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
.wp-block-heading {
  font-family: "Jost", sans-serif !important;
  font-weight: 300 !important;
}

.wp-block-button__link {
  font-family: "Jost", sans-serif !important;
  font-weight: 500 !important;
}

/* Default (unstyled) buttons follow the black/white palette instead of
   Kadence's default blue accent color. */
.wp-block-button:not(.is-style-outline) > .wp-block-button__link {
  background-color: #000 !important;
  color: #fff !important;
}

.wp-block-button__link {
  border-radius: 0;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  border: 1px solid currentColor;
}

hr,
.wp-block-separator {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  opacity: 1;
}

/* Homepage only: Kadence reserves ~112px above the content area (its global
   "content spacing" + entry wrapper padding) meant for a page title bar —
   we don't show one here, so it's just dead space above the hero video. */
body.home .content-area {
  margin-top: 0 !important;
}

body.home .entry-content-wrap {
  padding-top: 0 !important;
}

/* Full-width sections still need real side breathing room — align:"full"
   only removes the max-width, it doesn't add gutters. */
.wp-block-group.alignfull,
.wp-block-media-text.alignfull {
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
  box-sizing: border-box;
}

/* WooCommerce product grid: readable title/price text, force a real 2-column
   grid on mobile instead of the block's own (too-narrow) default. */
.wc-block-grid__product-title,
.woocommerce-loop-product__title {
  font-size: 17px !important;
}

.wc-block-grid__product-price,
.wc-block-grid .price,
.wc-block-grid__product .price {
  font-size: 16px !important;
}

.wc-block-grid .add_to_cart_button,
.wc-block-grid__product .add_to_cart_button {
  padding: 12px 22px !important;
  font-size: 15px !important;
  min-height: 44px;
}

/* Single product page: WooCommerce's classic button markup, not the
   Gutenberg block system, so it needs its own rule to match the black/white
   Jost style used everywhere else (product grids, site buttons). */
.single_add_to_cart_button.button {
  background-color: #000 !important;
  color: #fff !important;
  border: 0;
  border-radius: 0;
  padding: 14px 28px;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.single_add_to_cart_button.button:hover {
  background-color: #000 !important;
  color: #fff !important;
  opacity: 0.8;
}

.quantity .qty {
  font-family: "Jost", sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
}

@media (max-width: 600px) {
  .site-branding img.custom-logo {
    max-width: 110px !important;
    width: 110px !important;
  }

  /* Tighten the gap Gutenberg leaves after an image once columns stack. */
  .wp-block-column .wp-block-image {
    margin-bottom: 8px !important;
  }

  .wp-block-columns {
    row-gap: 28px !important;
  }

  .wc-block-grid.has-multiple-rows .wc-block-grid__products,
  .wc-block-grid .wc-block-grid__products,
  ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .wc-block-grid__product,
  ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
  }

  /* Desktop add-to-cart sizing is too big for a ~170px-wide mobile card. */
  .wc-block-grid .add_to_cart_button,
  .wc-block-grid__product .add_to_cart_button {
    padding: 8px 14px !important;
    font-size: 13px !important;
    min-height: 36px;
    width: auto !important;
  }

  /* Sections were carrying full desktop-scale padding on mobile too —
     stacked back-to-back that reads as a big dead gap between sections. */
  .wp-block-group.alignfull,
  .wp-block-media-text.alignfull {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}

.fiyonk-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.fiyonk-footer {
  background: #f7f7f5;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Kadence's own built-in copyright/theme-credit line — we render our own in
   .fiyonk-footer__bottom, so hide the default (it can't be truly emptied via
   the customizer option; empty falls back to its default template). */
.site-info {
  display: none !important;
}

/* Rolling announcement bar */
.fiyonk-footer__announcement {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 48px;
  box-sizing: border-box;
}

.fiyonk-footer__announcement-close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.fiyonk-footer__announcement-close:hover {
  opacity: 0.7;
}

.fiyonk-signup-confirm {
  padding: 12px 20px;
  background: #f0fdf4;
  color: #000;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.fiyonk-footer__announcement-track {
  display: inline-flex;
  width: max-content;
  animation: fiyonk-marquee 22s linear infinite;
}

.fiyonk-footer__announcement-track span {
  padding-right: 220px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.fiyonk-footer__announcement-track a {
  color: #fff;
  text-decoration: underline;
}

@keyframes fiyonk-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .fiyonk-footer__announcement-track {
    animation: none;
  }
}

.fiyonk-footer__columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 64px);
}

.fiyonk-footer__logo {
  display: block;
  width: 65px;
  height: auto;
  margin: 0 0 14px;
}

.fiyonk-footer__brand {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 400;
}

.fiyonk-footer__blurb {
  margin: 0 0 18px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.fiyonk-footer__social {
  display: flex;
  gap: 16px;
}

.fiyonk-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: opacity 0.2s ease;
}

.fiyonk-footer__social a:hover {
  opacity: 0.6;
}

.fiyonk-footer__col-title {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
}

.fiyonk-footer__col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fiyonk-footer__col nav a {
  color: #555;
  font-size: 15px;
  text-decoration: none;
}

.fiyonk-footer__col nav a:hover {
  color: #000;
}

.fiyonk-footer__form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fiyonk-footer__form-row input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: #fff;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: #000;
}

.fiyonk-footer__form-row input[type="email"]::placeholder {
  color: #888;
}

.fiyonk-footer__form-row button {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  background: #000;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.fiyonk-footer__form-row button:hover {
  opacity: 0.8;
}

.fiyonk-footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px clamp(20px, 5vw, 64px);
  max-width: 1440px;
  margin: 0 auto;
}

.fiyonk-footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: #777;
}

@media (max-width: 900px) {
  .fiyonk-footer__columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .fiyonk-footer__columns {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 36px;
  }

  .fiyonk-footer__announcement-track span {
    font-size: 13px;
    padding-right: 140px;
  }
}

/**
 * Single product page: plain description block under the summary meta
 * (price/stock/add-to-cart/SKU/category/brand), replacing the WooCommerce
 * tab UI.
 */
.fiyonk-product-description {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 640px;
}

.fiyonk-product-description p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 1em;
}

.fiyonk-product-description p:last-child {
  margin-bottom: 0;
}

/**
 * Product grid cards (shop archive, related products, any other product
 * loop) — center the image and text instead of Kadence's left-aligned
 * default.
 */
.woocommerce ul.products li.product .entry-content-wrap {
  text-align: center;
}

.woocommerce ul.products li.product a.woocommerce-loop-image-link {
  text-align: center;
}

.woocommerce ul.products li.product .star-rating {
  margin-left: auto;
  margin-right: auto;
}

/**
 * "İlgili ürünler" (related products) on the single-product page — center
 * the section heading.
 */
.related.products > h2 {
  text-align: center;
}

/**
 * [fiyonk_partner_retailers] — İş Ortaklarımız page: compact cards.
 */
.fiyonk-retailers__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.fiyonk-retailers__filter {
  padding: 9px 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.35);
  color: #000;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.fiyonk-retailers__filter:hover {
  border-color: #000;
}

.fiyonk-retailers__filter.is-active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.fiyonk-retailers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fiyonk-retailers__card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fiyonk-retailers__card:hover {
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.fiyonk-retailers__logo {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fiyonk-retailers__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.fiyonk-retailers__mono {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: hsl(30, 18%, 93%);
  color: #6b5d52;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fiyonk-retailers__info {
  min-width: 0;
}

.fiyonk-retailers__branch {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 4px;
}

.fiyonk-retailers__district {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.fiyonk-retailers__empty {
  text-align: center;
  color: #777;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .fiyonk-retailers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .fiyonk-retailers__grid {
    grid-template-columns: 1fr;
  }
}

/**
 * "Hakkımızda" (About) page — nude/warm palette pulled from the lifestyle
 * photo itself (walnut wood, cream, dusty rose), a rounded-corner framed
 * image beside the intro instead of a hero banner, and plain text for
 * values instead of boxed "data cards".
 */
.fiyonk-about {
  padding: 0 clamp(0px, 6vw, 100px);
  --fiyonk-ink: #2b241f;
  --fiyonk-body: #4a423b;
  --fiyonk-rule: #ddd2c4;
  --fiyonk-accent: #ad7b83;
  --fiyonk-accent-deep: #8a5f68;
  --fiyonk-cream: #faf6f0;
}

.fiyonk-about__hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: 3.5rem;
}

.fiyonk-about__logo {
  width: 130px;
  height: auto;
  display: block;
  margin-bottom: 1.75rem;
}

.fiyonk-about__hero-img {
  border-radius: 20px;
  border: 1px solid var(--fiyonk-rule);
  overflow: hidden;
  line-height: 0;
}

.fiyonk-about__hero-img img {
  display: block;
  width: 100%;
  height: auto;
}

.fiyonk-about__headline {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--fiyonk-ink);
  margin: 0 0 1.25rem;
}

.fiyonk-about__headline .fiyonk-about__accent-text {
  font-weight: 500;
  color: var(--fiyonk-accent);
}

.fiyonk-about__hero p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--fiyonk-body);
  margin: 0;
}

.fiyonk-about__body {
  max-width: 46em;
  margin: 0 auto;
}

.fiyonk-about__body p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--fiyonk-body);
  margin: 0 0 1.5em;
}

.fiyonk-about__rule {
  border: none;
  border-top: 1px solid var(--fiyonk-rule);
  max-width: 46em;
  margin: 3rem auto;
}

.fiyonk-about__statline {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: clamp(21px, 2.6vw, 27px);
  line-height: 1.6;
  color: var(--fiyonk-ink);
  max-width: 40em;
  margin: 0 auto;
}

.fiyonk-about__statline b {
  font-weight: 600;
  color: var(--fiyonk-accent-deep);
}

.fiyonk-about__values {
  max-width: 40em;
  margin: 0 auto;
}

.fiyonk-about__value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 1.4rem 0;
  border-top: 1px solid var(--fiyonk-rule);
  text-align: left;
}

.fiyonk-about__value-row:last-child {
  border-bottom: 1px solid var(--fiyonk-rule);
}

.fiyonk-about__value-title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--fiyonk-ink);
  margin: 0;
  flex: 0 0 140px;
}

.fiyonk-about__value-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fiyonk-body);
  margin: 0;
  flex: 1 1 260px;
}

.fiyonk-about__cta {
  padding: 3rem 0 0.5rem;
  text-align: center;
}

.fiyonk-about__cta p:first-child {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--fiyonk-ink);
  margin: 0 0 0.75rem;
}

.fiyonk-about__cta-sub {
  font-size: 15px;
  color: var(--fiyonk-body);
  margin: 0 0 1.75rem;
}

.fiyonk-about__cta-sub a {
  color: var(--fiyonk-accent-deep);
}

@media (max-width: 780px) {
  .fiyonk-about__hero {
    grid-template-columns: 1fr;
  }

  .fiyonk-about__hero-img {
    order: -1;
  }
}

@media (max-width: 560px) {
  .fiyonk-about__value-title {
    flex-basis: 100%;
  }
}

/**
 * "İletişim" (Contact) page — same considered editorial language as
 * Hakkımızda: narrow padded column, warm nude accent, plain hairline rows
 * instead of a boxed/beige emoji-icon band.
 */
.fiyonk-contact {
  padding: 0 clamp(0px, 6vw, 100px);
  --fiyonk-ink: #2b241f;
  --fiyonk-body: #4a423b;
  --fiyonk-rule: #ddd2c4;
  --fiyonk-accent-deep: #8a5f68;
}

.fiyonk-contact__heading {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 48px);
  color: var(--fiyonk-ink);
  margin: 0 0 1rem;
}

.fiyonk-contact__intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--fiyonk-body);
  max-width: 38em;
  margin: 0 0 3rem;
}

.fiyonk-contact__rows {
  max-width: 46em;
}

.fiyonk-contact__row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding: 1.6rem 0;
  border-top: 1px solid var(--fiyonk-rule);
}

.fiyonk-contact__row:last-child {
  border-bottom: 1px solid var(--fiyonk-rule);
}

.fiyonk-contact__row-label {
  flex: 0 0 160px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--fiyonk-ink);
}

.fiyonk-contact__row-value {
  flex: 1 1 260px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fiyonk-body);
}

.fiyonk-contact__row-value a {
  color: var(--fiyonk-accent-deep);
}

.fiyonk-contact__cta {
  margin-top: 2.5rem;
}

@media (max-width: 560px) {
  .fiyonk-contact__row-label {
    flex-basis: 100%;
  }
}

/**
 * "Bizimle Çalışın" (Work with us) page — same considered editorial
 * language as Hakkımızda/İletişim: narrow padded column, warm nude accent,
 * plain hairline rows instead of the old beige/gold cover-hero layout.
 */
.fiyonk-work {
  padding: 0 clamp(0px, 6vw, 100px);
  --fiyonk-ink: #2b241f;
  --fiyonk-body: #4a423b;
  --fiyonk-rule: #ddd2c4;
  --fiyonk-accent-deep: #8a5f68;
}

.fiyonk-work__heading {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 48px);
  color: var(--fiyonk-ink);
  margin: 0 0 1rem;
}

.fiyonk-work__intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--fiyonk-body);
  max-width: 40em;
  margin: 0 0 3rem;
}

.fiyonk-work__section-title {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--fiyonk-ink);
  margin: 0 0 1.75rem;
}

.fiyonk-work__steps {
  max-width: 46em;
  margin: 0 0 4rem;
}

.fiyonk-work__step {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  padding: 1.6rem 0;
  border-top: 1px solid var(--fiyonk-rule);
}

.fiyonk-work__step:last-child {
  border-bottom: 1px solid var(--fiyonk-rule);
}

.fiyonk-work__step-num {
  flex: 0 0 56px;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--fiyonk-accent-deep);
}

.fiyonk-work__step-body {
  flex: 1 1 260px;
}

.fiyonk-work__step-title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--fiyonk-ink);
  margin: 0 0 6px;
}

.fiyonk-work__step-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fiyonk-body);
  margin: 0;
}

.fiyonk-work__apply-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fiyonk-body);
  max-width: 40em;
  margin: 0 0 1.75rem;
}

.fiyonk-work__rows {
  max-width: 46em;
  margin: 0 0 2.5rem;
}

.fiyonk-work__row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding: 1.4rem 0;
  border-top: 1px solid var(--fiyonk-rule);
}

.fiyonk-work__row:last-child {
  border-bottom: 1px solid var(--fiyonk-rule);
}

.fiyonk-work__row-label {
  flex: 0 0 160px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--fiyonk-ink);
}

.fiyonk-work__row-value {
  flex: 1 1 260px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fiyonk-body);
}

.fiyonk-work__row-value a {
  color: var(--fiyonk-accent-deep);
}

@media (max-width: 560px) {
  .fiyonk-work__row-label {
    flex-basis: 100%;
  }
}

/**
 * [fiyonk_faq] — "Sıkça Sorulan Sorular" page. Native <details>/<summary>
 * accordion — no JS, fully crawlable by search engines.
 */
.fiyonk-faq {
  max-width: 46em;
}

.fiyonk-faq__heading {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 44px);
  color: #2b241f;
  margin: 0 0 1.25rem;
}

.fiyonk-faq__intro {
  font-size: 17px;
  line-height: 1.8;
  color: #4a423b;
  margin: 0 0 2.5rem;
}

.fiyonk-faq__intro a {
  color: #8a5f68;
}

.fiyonk-faq__item {
  border-top: 1px solid #ddd2c4;
  padding: 4px 0;
}

.fiyonk-faq__item:last-child {
  border-bottom: 1px solid #ddd2c4;
}

.fiyonk-faq__question {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #2b241f;
  padding: 1.1rem 28px 1.1rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.fiyonk-faq__question::-webkit-details-marker {
  display: none;
}

.fiyonk-faq__question::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 1.0rem;
  font-size: 20px;
  font-weight: 300;
  color: #8a5f68;
  transition: transform 0.2s ease;
}

.fiyonk-faq__item[open] .fiyonk-faq__question::after {
  transform: rotate(45deg);
}

.fiyonk-faq__answer {
  font-size: 16px;
  line-height: 1.75;
  color: #4a423b;
  margin: 0 0 1.4rem;
  max-width: 42em;
}

/**
 * Legal/policy pages (Gizlilik Politikası, İade Politikası, Kargo
 * Politikası, Geri Ödeme Politikası) — same considered editorial language,
 * narrow column, generous type, hairline section breaks.
 */
.fiyonk-legal {
  max-width: 50em;
  --fiyonk-ink: #2b241f;
  --fiyonk-body: #4a423b;
  --fiyonk-rule: #ddd2c4;
  --fiyonk-accent-deep: #8a5f68;
}

.fiyonk-legal__heading {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 44px);
  color: var(--fiyonk-ink);
  margin: 0 0 0.5rem;
}

.fiyonk-legal__updated {
  font-size: 13px;
  color: #999;
  margin: 0 0 2.5rem;
}

.fiyonk-legal__intro {
  font-size: 17px;
  line-height: 1.85;
  color: var(--fiyonk-body);
  margin: 0 0 2.5rem;
}

.fiyonk-legal h2 {
  font-family: "Jost", sans-serif;
  font-weight: 500 !important;
  font-size: 19px;
  color: var(--fiyonk-ink);
  margin: 2.5rem 0 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--fiyonk-rule);
}

.fiyonk-legal h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.fiyonk-legal p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fiyonk-body);
  margin: 0 0 1.1em;
}

.fiyonk-legal ul {
  margin: 0 0 1.1em;
  padding-left: 1.3em;
}

.fiyonk-legal li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fiyonk-body);
  margin-bottom: 0.5em;
}

.fiyonk-legal a {
  color: var(--fiyonk-accent-deep);
}

.fiyonk-legal strong {
  color: var(--fiyonk-ink);
}

/**
 * Top-anchored search bar — replaces Kadence's full-screen dark drawer.
 * Slides down from the very top of the viewport instead of taking over
 * the whole page.
 */
.fiyonk-search-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100001;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}

.fiyonk-search-bar.is-open {
  transform: translateY(0);
}

.fiyonk-search-bar__form {
  display: flex;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 64px);
  gap: 12px;
}

.fiyonk-search-bar__input {
  flex: 1;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 8px 2px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  outline: none;
  background: transparent;
}

.fiyonk-search-bar__input:focus {
  border-bottom-color: #000;
}

.fiyonk-search-bar__submit {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  display: flex;
  color: #000;
}

.fiyonk-search-bar__close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
  color: #666;
}

.fiyonk-search-bar__close:hover {
  color: #000;
}

.fiyonk-account-icon {
  display: flex;
  align-items: center;
  color: inherit;
  margin-right: 14px;
}

.fiyonk-account-icon:hover {
  opacity: 0.6;
}

/* ---- Eğitim page ---- */
body.page-id-1663 .content-area { margin-top: 0 !important; }
body.page-id-1663 .entry-content-wrap { padding: 0 !important; }
body.page-id-1663 .wp-block-group.alignfull { padding-left: 0; padding-right: 0; }

.fiyonk-edu-sr {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.fiyonk-edu-hero { background: #000; color: #fff; }
.fiyonk-edu-hero__stage {
  position: relative;
  width: 100%;
  height: min(calc(100vh - 140px), 56.25vw);
  min-height: 260px;
  background: #000;
}
.fiyonk-edu-hero__video {
  width: 100%; height: 100%; display: block; object-fit: contain; background: #000;
}
.fiyonk-edu-hero__sound {
  position: absolute; top: 18px; right: 18px;
  background: rgba(0,0,0,.7); color: #fff; border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px; padding: 10px 20px; font: inherit; font-size: 14px;
  cursor: pointer; z-index: 2;
}
.fiyonk-edu-hero__sound:hover { background: #fff; color: #000; }
.fiyonk-edu-hero__caption {
  max-width: 1100px; margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 64px) 36px;
}
.fiyonk-edu-hero__eyebrow {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .65;
}
.fiyonk-edu-hero__caption h2 {
  color: #fff; margin: 8px 0 8px; font-size: clamp(22px, 2.6vw, 32px); font-weight: 500;
}
.fiyonk-edu-hero__caption p { margin: 0; opacity: .8; max-width: 70ch; }

.fiyonk-edu-more {
  max-width: 1100px; margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 64px) 80px;
}
.fiyonk-edu-more h2 { text-align: center; margin: 0 0 8px; }
.fiyonk-edu-more__intro { text-align: center; margin: 0 0 40px; opacity: .75; }
.fiyonk-edu-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 32px;
}
.fiyonk-edu-card__frame {
  aspect-ratio: 16 / 9; background: #000; border-radius: 14px; overflow: hidden;
}
.fiyonk-edu-card__frame video {
  width: 100%; height: 100%; display: block; object-fit: contain; background: #000;
}
.fiyonk-edu-card__body { padding: 16px 4px 0; }
.fiyonk-edu-card__meta {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .55;
}
.fiyonk-edu-card__body h3 { margin: 6px 0 6px; font-size: 19px; font-weight: 500; line-height: 1.3; }
.fiyonk-edu-card__body p { margin: 0; font-size: 15px; opacity: .8; }

@media (max-width: 720px) {
  .fiyonk-edu-hero__stage { height: 56.25vw; }
  .fiyonk-edu-grid { grid-template-columns: 1fr; gap: 32px; }
  .fiyonk-edu-hero__sound { top: 10px; right: 10px; padding: 8px 14px; font-size: 13px; }
}

/* ---- Contact form ---- */
.fiyonk-cform { max-width: 760px; margin: 48px auto 0; }
.fiyonk-cform__title { text-align: center; margin: 0 0 24px; }
.fiyonk-cform__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; margin-bottom: 18px; }
.fiyonk-cform label { display: block; font-size: 14px; font-weight: 500; }
.fiyonk-cform input[type="text"], .fiyonk-cform input[type="email"], .fiyonk-cform input[type="tel"],
.fiyonk-cform select, .fiyonk-cform textarea {
  display: block; width: 100%; margin-top: 6px; padding: 12px 14px; font: inherit; font-size: 15px;
  border: 1px solid rgba(0,0,0,.25); border-radius: 10px; background: #fff; box-sizing: border-box;
}
.fiyonk-cform input:focus, .fiyonk-cform select:focus, .fiyonk-cform textarea:focus { outline: none; border-color: #000; }
.fiyonk-cform__full { margin-bottom: 18px; }
.fiyonk-cform__check { display: flex; gap: 10px; align-items: flex-start; font-weight: 400 !important; margin-bottom: 22px; }
.fiyonk-cform__check input { margin-top: 4px; }
.fiyonk-cform__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.fiyonk-cform__submit {
  display: block; margin: 0 auto; padding: 14px 44px; background: #000; color: #fff; border: 0;
  border-radius: 999px; font: inherit; font-weight: 500; cursor: pointer;
}
.fiyonk-cform__submit:hover { opacity: .8; }
.fiyonk-cform__notice { padding: 14px 18px; border-radius: 10px; margin: 0 0 22px; text-align: center; }
.fiyonk-cform__notice--ok { background: #eef6ee; border: 1px solid #b9d9b9; }
.fiyonk-cform__notice--err { background: #fbeeee; border: 1px solid #e3b5b5; }
@media (max-width: 600px) { .fiyonk-cform__grid { grid-template-columns: 1fr; } }

/* ---- Cookie notice ---- */
.fiyonk-cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999; max-width: 760px; margin: 0 auto;
  display: flex; gap: 18px; align-items: center; justify-content: space-between;
  background: #fff; color: #222; border: 1px solid rgba(0,0,0,.2); border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15); padding: 16px 20px; font-size: 14px; line-height: 1.5;
}
.fiyonk-cookie[hidden] { display: none; }
.fiyonk-cookie p { margin: 0; }
.fiyonk-cookie a { color: #000; text-decoration: underline; }
.fiyonk-cookie__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.fiyonk-cookie__actions button {
  padding: 10px 18px; border-radius: 999px; border: 1px solid #000; background: #fff; color: #000;
  font: inherit; font-size: 13px; cursor: pointer; white-space: nowrap;
}
.fiyonk-cookie__actions button.is-primary { background: #000; color: #fff; }
@media (max-width: 640px) { .fiyonk-cookie { flex-direction: column; align-items: stretch; } .fiyonk-cookie__actions { justify-content: flex-end; } }
