/* ===== Nomelly footer ======================================================
   Deep-olive floor for the whole site. Every value here is tuned for ivory
   text on olive — the footer never reads a merchant link colour, because on
   this ground any picked colour is a contrast trap.
   ========================================================================== */

.cc_ybju7jv0_footer .kombos-footer {
  width: 100%;
  background: var(--nm-olive, #314326);
}

.cc_ybju7jv0_footer .kombos-footer__wrapper {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

/* ===== Top section ===== */

.cc_ybju7jv0_footer .kombos-footer__top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Brand */

.cc_ybju7jv0_footer .kombos-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cc_ybju7jv0_footer .kombos-footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

/* uploaded logo image */
.cc_ybju7jv0_footer .kombos-footer__logo-img {
  height: 2.25rem;
  width: auto;
  max-width: 12rem;
  object-fit: contain;
  object-position: left center;
}

/* SVG wordmark fallback — inherits ivory via currentColor */
.cc_ybju7jv0_footer .kombos-footer__logo-mark {
  height: 1.75rem;
  width: auto;
  color: var(--nm-ivory, #FCF9F6);
  display: block;
}

.cc_ybju7jv0_footer .kombos-footer__desc {
  margin: 0;
  color: rgba(252, 249, 246, 0.66);
  max-width: 22rem;
  line-height: 1.7;
}
.cc_ybju7jv0_footer .kombos-footer__desc * {
  color: inherit;
}

/* Socials */

.cc_ybju7jv0_footer .kombos-footer__socials {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.25rem;
  color: rgba(252, 249, 246, 0.78);
}
.cc_ybju7jv0_footer .kombos-footer__socials svg {
  fill: currentColor;
}

/* ===== Link columns ===== */

/* auto-fit, not a fixed track count: the number of columns is merchant-managed
   (removing the İletişim column used to leave a dead 4th track ~234px wide at
   1440px). auto-fit collapses the empty tracks and the real ones share the
   width, so the block always ends flush with the newsletter row below it —
   whatever number of columns ops ends up configuring. */
.cc_ybju7jv0_footer .kombos-footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
  gap: 2rem 1.5rem;
}

.cc_ybju7jv0_footer .kombos-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-width: 0;
}

.cc_ybju7jv0_footer .kombos-footer__col-title {
  margin: 0;
  color: var(--nm-ivory, #FCF9F6);
  letter-spacing: 0.01em;
}

.cc_ybju7jv0_footer .kombos-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

/* !important is deliberate: the platform ships `a { color: inherit }` in a
   cascade layer that beats class specificity, so every footer <a> would
   otherwise inherit black and vanish on the olive ground. */
.cc_ybju7jv0_footer .kombos-footer__col-link {
  color: rgba(252, 249, 246, 0.72) !important;
  text-decoration: none;
  transition: color 0.15s ease;
  width: fit-content;
}
.cc_ybju7jv0_footer .kombos-footer__col-link:hover {
  color: var(--nm-ivory, #FCF9F6) !important;
}
/* a title that is itself a link stays title-weight, dims slightly on hover */
.cc_ybju7jv0_footer .kombos-footer__col-title.kombos-footer__col-link {
  color: var(--nm-ivory, #FCF9F6) !important;
}
.cc_ybju7jv0_footer .kombos-footer__col-title.kombos-footer__col-link:hover {
  color: rgba(252, 249, 246, 0.72) !important;
}
.cc_ybju7jv0_footer .kombos-footer__col-link:focus-visible {
  outline: 2px solid rgba(252, 249, 246, 0.9);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== Newsletter + social row =============================================
   Sits between the link columns and the payment row. Same ivory-on-olive
   contrast rules as the rest of the footer.
   ========================================================================== */

.cc_ybju7jv0_footer .kombos-footer__signup {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(252, 249, 246, 0.14);
}

.cc_ybju7jv0_footer .nm-news {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 26rem;
}

.cc_ybju7jv0_footer .nm-news__title {
  margin: 0;
  color: var(--nm-ivory, #FCF9F6);
  letter-spacing: 0.06em;
}

.cc_ybju7jv0_footer .nm-news__desc {
  margin: 0;
  color: rgba(252, 249, 246, 0.72);
}

.cc_ybju7jv0_footer .nm-news__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* the input and its arrow read as one field, so the border lives on the wrapper */
.cc_ybju7jv0_footer .nm-news__field {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(252, 249, 246, 0.34);
  border-radius: 2px;
  transition: border-color 0.18s ease;
}

.cc_ybju7jv0_footer .nm-news__field:focus-within {
  border-color: var(--nm-ivory, #FCF9F6);
}

/* `all: unset` first: the platform ships input resets in a cascade layer that
   otherwise repaints this field with its own border and background. */
.cc_ybju7jv0_footer .nm-news__input {
  all: unset;
  flex: 1;
  min-width: 0;
  padding: 0.875rem 1rem;
  color: var(--nm-ivory, #FCF9F6);
  background: transparent;
  font: inherit;
}

.cc_ybju7jv0_footer .nm-news__input::placeholder {
  color: rgba(252, 249, 246, 0.5);
}

.cc_ybju7jv0_footer .nm-news__submit {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  cursor: pointer;
  color: var(--nm-ivory, #FCF9F6);
  font-size: 1.25rem;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cc_ybju7jv0_footer .nm-news__submit:hover:not(:disabled) {
  transform: translateX(2px);
}

.cc_ybju7jv0_footer .nm-news__submit:disabled {
  opacity: 0.45;
  cursor: default;
}

.cc_ybju7jv0_footer .nm-news__submit:focus-visible, .cc_ybju7jv0_footer .nm-news__checkbox:focus-visible {
  outline: 2px solid rgba(252, 249, 246, 0.9);
  outline-offset: 2px;
}

.cc_ybju7jv0_footer .nm-news__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  color: rgba(252, 249, 246, 0.66);
  cursor: pointer;
  line-height: 1.5;
}

.cc_ybju7jv0_footer .nm-news__checkbox {
  margin: 0.1875rem 0 0;
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  accent-color: var(--nm-ivory, #FCF9F6);
  cursor: pointer;
}

.cc_ybju7jv0_footer .nm-news__error {
  margin: 0;
  color: #F0B9AE;
}

.cc_ybju7jv0_footer .nm-news__success {
  margin: 0;
  color: var(--nm-ivory, #FCF9F6);
}

/* Social block */

.cc_ybju7jv0_footer .kombos-footer__social-block {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.cc_ybju7jv0_footer .kombos-footer__social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* bordered squares, matching the reference footer */
.cc_ybju7jv0_footer .nm-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(252, 249, 246, 0.28);
  border-radius: 2px;
  color: rgba(252, 249, 246, 0.82) !important;
  font-size: 1.125rem;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease,
    background-color 0.18s ease;
}

.cc_ybju7jv0_footer .nm-social:hover {
  color: var(--nm-olive, #314326) !important;
  background: var(--nm-ivory, #FCF9F6);
  border-color: var(--nm-ivory, #FCF9F6);
}

.cc_ybju7jv0_footer .nm-social:focus-visible {
  outline: 2px solid rgba(252, 249, 246, 0.9);
  outline-offset: 2px;
}

/* ===== Bottom bar ===== */

.cc_ybju7jv0_footer .kombos-footer__bottom {
  border-top: 1px solid rgba(252, 249, 246, 0.14);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ===== Trust row — "Güvenli Alışveriş" + payment marks ===== */

.cc_ybju7jv0_footer .kombos-footer__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.cc_ybju7jv0_footer .kombos-footer__secure {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--nm-ivory, #FCF9F6);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* .kombos-icon is 1em square, so the shield is sized on the svg itself — the
   parent's font-size belongs to text-xs-medium and must not be overridden. */
.cc_ybju7jv0_footer .kombos-footer__secure-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.cc_ybju7jv0_footer .kombos-footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.cc_ybju7jv0_footer .kombos-footer__copyright {
  margin: 0;
  color: rgba(252, 249, 246, 0.6);
}
.cc_ybju7jv0_footer .kombos-footer__copyright * {
  color: inherit;
}

/* No per-breakpoint column counts: the auto-fit track above already yields 2
   columns on a phone, 3 on a tablet and as many as fit on desktop. */

/* ===== Desktop: brand left, columns right ===== */

@media (min-width: 1024px) {
  .cc_ybju7jv0_footer .kombos-footer__top {
    flex-direction: row;
    gap: clamp(4rem, 8vw, 8rem);
    align-items: flex-start;
  }

  .cc_ybju7jv0_footer .kombos-footer__brand {
    width: 22rem;
    flex-shrink: 0;
  }

  .cc_ybju7jv0_footer .kombos-footer__columns {
    flex: 1;
    gap: 2.5rem 1.5rem;
  }

  .cc_ybju7jv0_footer .kombos-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* newsletter left, social right — the reference footer's arrangement */
  .cc_ybju7jv0_footer .kombos-footer__signup {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(3rem, 6vw, 6rem);
  }

  /* copyright left, "Güvenli Alışveriş" + marks bottom-right */
  .cc_ybju7jv0_footer .kombos-footer__trust {
    justify-content: flex-end;
  }
}
