html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

h1 {
  font-family: "Funnel Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

h2 {
  font-family: "Funnel Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

h3 {
  font-family: "Funnel Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

a {
  font-family: "Funnel Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

b {
  font-family: "Funnel Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

p {
  font-family: "Funnel Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

:root {
  /* Slider görselleri */
  --slide-1: url('../img/slider/1.webp');
  --slide-2: url('../img/slider/2.webp');
  --slide-3: url('../img/slider/3.webp');
  --slide-4: url('../img/slider/4.webp');
  --slide-5: url('../img/slider/5.webp');
  --slide-6: url('../img/slider/6.webp');
  --slide-7: url('../img/slider/7.webp');

  /* Üstten aşağı “yeşil ton” overlay */
  --grad: linear-gradient(180deg, rgba(22, 87, 8, 0.8) 1%, rgba(0, 0, 0, 0.6) 20%);

  /* Logo yüksekliği */
  --logo-h: 70px;

  /* Slider süresi (7 slide: 7x6s = 42s) */
  --slider-duration: 42s;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --text-primary: #F7F5F2;
  --text-secondary: #D6D6D6;
  --dark-overlay: rgba(0, 0, 0, 0.48);
  --accent: #EDE8DF;

}

.tda-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* tam ekran */
  min-height: 100vh;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.tda-hero {
  isolation: isolate;
}

/* stacking context'i kilitler */
.tda-hero__slides,
.tda-hero__grad {
  position: absolute;
  inset: 0;
}

.tda-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* arka plan katmanı */
}

.tda-hero__slides .tda-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  opacity: 0;
  animation: tdaFade var(--slider-duration) infinite;
  background-color: #111;
  /* resim gelmezse beyaz kalmasın */
}

.tda-hero__slides .tda-slide:nth-child(1) {
  background-image: var(--slide-1);
  background-position: center center;
  background-size: cover;
  animation-delay: 0s;
}

.tda-hero__slides .tda-slide:nth-child(2) {
  background-image: var(--slide-2);
  background-position: center 30%;
  background-size: cover;
  animation-delay: 6s;
}

.tda-hero__slides .tda-slide:nth-child(3) {
  background-image: var(--slide-3);
  background-position: center center;
  background-size: cover;
  animation-delay: 12s;
}

.tda-hero__slides .tda-slide:nth-child(4) {
  background-image: var(--slide-4);
  background-position: center 40%;
  background-size: cover;
  animation-delay: 18s;
}

.tda-hero__slides .tda-slide:nth-child(5) {
  background-image: var(--slide-5);
  background-position: center center;
  background-size: cover;
  animation-delay: 24s;
}

.tda-hero__slides .tda-slide:nth-child(6) {
  background-image: var(--slide-6);
  background-position: center 35%;
  background-size: 100%;
  transform: scale(1);
  animation-delay: 30s;
}

.tda-hero__slides .tda-slide:nth-child(7) {
  background-image: var(--slide-7);
  background-position: center center;
  background-size: 100%;
  transform: scale(1);
  animation-delay: 36s;
}

@keyframes tdaFade {
  0% {
    opacity: 0;
  }

  3% {
    opacity: 1;
  }

  14% {
    opacity: 1;
  }

  17% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.tda-hero__grad {
  position: absolute;
  inset: 0;
  background: var(--grad);
  pointer-events: none;
  z-index: 2;
}

.tda-hero__bar {
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  padding: 18px 4px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  z-index: 50;
  /* <-- dropdown/üst bar CTA’nın üstünde */
}

.tda-menu {
  justify-self: start;
  position: relative;
  display: inline-flex;
  padding: 10px 14px;
  padding-bottom: 20px;
  align-items: center;
  z-index: 60;
  /* menü üstte */
}

/* Mobil toggle checkbox (gizli) */
.tda-menu__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Menü butonu (tıklanabilir alan) */
.tda-menu__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 8px;
  border-radius: 999px;

  color: #fff;
  font-family: system-ui;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  user-select: none;


  transition: .2s ease;
}

.fa-bars {
  font-size: 26px;
}

.tda-menu__btn:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .38);
  transform: translateY(-1px);
}

/* Dropdown panel */
.tda-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 10px;
  min-width: 240px;
  width: 300px;
  padding: 20px;
  border-radius: 16px;

  background: rgba(18, 18, 18, .45);
  border: 1px solid rgba(5, 82, 24, 0.833);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .18s ease;

  z-index: 9999;
  /* <-- CTA’nın ALTINDA KALMASIN diye */
}


/* Mobil: checkbox checked ile aç */
.tda-menu__toggle:checked~.tda-menu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tda-menu__dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  transition: .15s ease;
  text-decoration: none;
}

.tda-menu__dropdown a:hover {
  background: rgba(255, 255, 255, .14);
}

/* ====== ORTA: LOGO ====== */
.tda-hero__logo {
  justify-self: center;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tda-hero__logo img {
  height: var(--logo-h);
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .25));
  background: transparent;
}

/* ====== SAĞ: ARAMA + İKONLAR ====== */
.tda-hero__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;

}


/* toggle gizli */
.tda-search-toggle {
  display: none;
}

/* wrapper */
.tda-search-wrap {
  position: relative;
  padding-bottom: 12px;
}

/* üst ikon buton gibi */
.tda-search {
  width: 44px;
  height: 44px;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 254, 254, 0.16);
  border-radius: 999px;
  cursor: pointer;
}

/* DROPDOWN (kapalı) */
.tda-search-dropdown {

  position: absolute;
  top: calc(100% + 10px);
  width: 100px;
  height: 100%;
  right: -100%;
  min-width: 240px;
  max-height: 42px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.599);
  border: 2px solid rgba(5, 82, 24, 0.833);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);

  visibility: hidden;
  transform: translateY(-8px);
  transition: .2s ease;

  z-index: 999;
}

/* input stil */
.tda-search-dropdown input {
  width: 100%;
  height: 41px;
  background-color: #ffffff00;
  border-radius: 10px;

  border: rgb(2, 84, 18);
  outline: none;
  padding: 10px;
  font-size: 14px;
}

/* AÇILMA (CLICK) */
.tda-search-toggle:checked~.tda-search-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tda-search input {
  width: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  transition: .25s ease;
}

.tda-search-form {
  width: 44px;
  height: 44px;
  font-size: 16px;
  border: 0;
  background: transparent;
  color: #ff0000;
  cursor: pointer;
}

.tda-search:hover,
.tda-search:focus-within {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .40);
  transform: translateY(-1px);
  transition: .2s ease;
}

.tda-search:hover input,
.tda-search:focus-within input {
  width: 260px;
  padding: 0 6px 0 16px;
}

.tda-search-dropdown input::placeholder {
  color: rgb(1, 75, 5);
}

.tda-icons {
  display: flex;
  padding-bottom: 13px;
  padding-right: 10px;
  align-items: center;
  gap: 14px;
}

.tda-kayit {
  display: flex;
  padding-bottom: 15px;
  align-items: center;
  gap: 16px;
}


.tda-icons a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px);
  transition: .2s ease;
  position: relative;
}

.tda-kayit a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 6px;
  padding-right: 20px;

}

.tda-icons a i {
  font-size: 20px;
}

.tda-icons a:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .38);
  transform: translateY(-1px);
  transition: .2s ease;
}

.tda-kayit a:hover {
  border-bottom: 1px solid rgb(255, 255, 255);
}

@media screen and (max-width: 1200px) {
  .hide-on-mobile {
    display: none;
  }
}


.tda-hero__cta {
  position: absolute;
  left: 40px;
  bottom: 80px;
  width: 570px;
  max-width: calc(100% - 80px);
  color: #fff;

  z-index: 10;
  /* bar/dropdown üstte kalsın */
}

.tda-hero__cta h2 {
  margin: 0 0 14px 0;
  color: rgb(255, 255, 255);
  font-size: clamp(52px, 7vw, 84px);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  text-shadow: 0px 0px 4px #000;
  line-height: 1.02;
  padding-bottom: 24px;
  width: 100%;
}

.tda-hero__cta h1 {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgb(255, 255, 255);
  padding-bottom: 12px;
}

.tda-hero__cta p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  color: rgb(255, 255, 255);
  padding-bottom: 10px;
}

.tda-hero__btns {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-top: 10px;
}

.tda-hero__cta .a1,
.tda-hero__cta .a2 {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 16px;
  border-radius: 1px;
  text-decoration: none;
  transition: .2s ease;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  box-sizing: border-box;
}

.tda-hero__cta .a1 {
  color: #111;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .85);
  backdrop-filter: blur(1px);
}

.tda-hero__cta .a2 {
  color: #ffffff;
  background: rgba(1, 61, 12, 0.35);
  border: 1px solid rgba(255, 255, 255, .85);
  backdrop-filter: blur(1px);
}

.tda-hero__cta i {
  font-size: 13px;
  font-weight: 600;
}

.tda-hero__cta .a1:hover,
.tda-hero__cta .a2:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .40);
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 600px) {
  .tda-hero__cta {
    left: 20px;
    width: calc(100% - 40px);
    bottom: 40px;
  }

  .tda-hero__btns {
    flex-direction: column;
    gap: 10px;
  }
}

* {
  padding: 0;
  box-sizing: border-box;
}

#section-1 {
  background-color: #0a3c00;
}


#section-2 {
  background-color: #ffffff;
}

/* =============================================
   SECTION 2 – KOLEKSİYON KARTLARI (SILK-KA TARZI)
   ============================================= */

.tda-collections__header {
  align-items: center;
  text-align: center;
  padding-bottom: 50px;
  margin-top: -30;

}

.tda-collections__header h1 {
  font-size: clamp(48px, 6.5vw, 75px);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-top: -2px;
  margin-bottom: 1px;

}

.tda-collections__header h3 {
  font-size: clamp(48px, 6.5vw, 75px);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.20em;
  line-height: 1.02;
}

.tda-collections__header p {

  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: -20px;
  line-height: 1.02;
}

.tda-collections {
  width: 100%;
  padding: 80px 40px;
}

.tda-collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ---------- CARD ---------- */
.tda-col-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid#00000030;
}

.tda-col-card:hover {
  transform: translateY(-4px);
}

/* Görsel kutusu */
.tda-col-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.tda-col-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tda-col-card:hover .tda-col-card__img img {
  transform: scale(1.05);
}

/* İçerik alanı */
.tda-col-card__body {
  padding: 28px 10px 32px;
  text-align: center;
}

.tda-col-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.2;
}

.tda-col-card__body b {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}

.tda-col-card__body p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  margin: 0 0 22px;
}

/* Buton */
.tda-col-card__btn {
  display: inline-block;
  padding: 14px 30px;
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.tda-col-card__btn:hover {
  background: #1a1a1a;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ---------- RESPONSİVE ---------- */
@media screen and (max-width: 1024px) {
  .tda-collections__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .tda-collections {
    padding: 60px 24px;
  }
}

@media screen and (max-width: 640px) {
  .tda-collections__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tda-collections {
    padding: 40px 16px;
  }
}


/* =============================================
   SECTION 3 – SHOWROOM
   ============================================= */

.tda-showroom {
  width: 100%;
  padding: 80px 40px;
  background: #ffffff;
}

.tda-showroom__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

/* Sol: Görsel */
.tda-showroom__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
  background: #000;
}

.tda-showroom__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tda-showroom__media:hover .tda-showroom__poster {
  transform: scale(1.03);
}

.tda-showroom__media iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Play butonu overlay */
.tda-showroom__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.tda-showroom__play i {
  color: #fff;
  font-size: 22px;
  margin-left: 4px;
}

.tda-showroom__play:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Sağ: Metin */
.tda-showroom__text {
  text-align: center;
  padding: 20px 0;
}

.tda-showroom__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.2;
}

.tda-showroom__text b {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}

.tda-showroom__text p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* Showroom buton */
.tda-showroom__btn {
  display: inline-block;
  padding: 16px 36px;
  background: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.tda-showroom__btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Alt not */
.tda-showroom__note {
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
  margin-top: 10px;
}

.tda-showroom__note p {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.tda-showroom__note em {
  font-style: italic;
  color: #777;
}

/* Showroom responsive */
@media screen and (max-width: 900px) {
  .tda-showroom__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tda-showroom {
    padding: 60px 24px;
  }
}

@media screen and (max-width: 640px) {
  .tda-showroom {
    padding: 40px 16px;
  }
}


/* =============================================
   FOOTER
   ============================================= */

.tda-footer {
  position: relative;
  background: #1a1a1a;
  color: #ccc;
  overflow: hidden;
}



/* Ana içerik grid */
.tda-footer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 50px 50px;
}

/* ---------- KOLON 1: BRAND ---------- */
.tda-footer__brand-img {
  margin-bottom: 16px;
}

.tda-footer__brand-img img {
  height: 50px;
  width: auto;
  filter: brightness(10);
}

.tda-footer__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #999;
  line-height: 1.7;
  margin: 0 0 24px;
}

.tda-footer__tagline span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #777;
  text-transform: lowercase;
}

/* İletişim */
.tda-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.tda-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #999;
  line-height: 1.6;
}

.tda-footer__contact li i {
  color: #666;
  font-size: 14px;
  margin-top: 3px;
  min-width: 16px;
}

.tda-footer__contact li a {
  color: #999;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  transition: color 0.2s;
}

.tda-footer__contact li a:hover {
  color: #fff;
}

/* Sosyal medya */
.tda-footer__social {
  display: flex;
  gap: 10px;
}

.tda-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tda-footer__social a:hover {
  background: #444;
  color: #fff;
  transform: translateY(-2px);
}

.tda-footer__social a i {
  font-size: 15px;
}

/* ---------- KOLONLAR (2-5) ---------- */
.tda-footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.tda-footer__sub-title {
  margin-top: 28px !important;
}

.tda-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tda-footer__col ul li {
  margin-bottom: 10px;
}

.tda-footer__col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #999;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease;
}

.tda-footer__col ul li a:hover {
  color: #fff;
}

.tda-footer__col ul li a i {
  font-size: 12px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

.tda-footer__col ul li a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- BÜLTEN ---------- */
.tda-footer__newsletter p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #999;
  line-height: 1.6;
  margin: 0 0 18px;
}

.tda-footer__input-wrap {
  display: flex;
  border: 1px solid #444;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 14px;
}

.tda-footer__input-wrap input {
  flex: 1;
  padding: 12px 14px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
}

.tda-footer__input-wrap input::placeholder {
  color: #666;
}

.tda-footer__input-wrap button {
  background: transparent;
  border: none;
  color: #999;
  padding: 0 14px;
  cursor: pointer;
  transition: color 0.2s;
}

.tda-footer__input-wrap button:hover {
  color: #fff;
}

.tda-footer__subscribe-btn {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  border: 1.5px solid #555;
  color: #ccc;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tda-footer__subscribe-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #1a1a1a;
}

/* ---------- ALT BAR ---------- */
.tda-footer__bottom {
  border-top: 1px solid #333;
  background: #151515;
}

.tda-footer__bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.tda-footer__copyright p {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #666;
  margin: 0 0 2px;
}

.tda-footer__security {
  display: flex;
  gap: 20px;
}

.tda-footer__badge {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tda-footer__badge i {
  font-size: 14px;
  color: #4a8c5c;
}

.tda-footer__payments {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tda-pay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tda-pay-icon svg {
  display: block;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.tda-footer__trust {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #4a8c5c;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 8px;
}

.tda-footer__trust i {
  font-size: 14px;
}

/* ---------- FOOTER RESPONSİVE ---------- */
@media screen and (max-width: 1024px) {
  .tda-footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 30px;
  }

  .tda-footer__brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .tda-footer__inner {
    grid-template-columns: 1fr 1fr;
    padding: 50px 24px 40px;
    gap: 30px 24px;
  }

  .tda-footer__brand {
    grid-column: 1 / -1;
    display: block;
  }

  .tda-footer__bottom-inner {
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .tda-footer__inner {
    grid-template-columns: 1fr;
    padding: 40px 16px 30px;
  }

}