/* Tema 2 – Ana sayfa stilleri */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html[data-theme="tema-2"] { --t2-page-gutter: clamp(16px, 3vw, 6cm); }
body { font-family: Inter, system-ui, sans-serif; background: #f3f2fb; color: #1d2327; line-height: 1.5; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
.t2-accent { color: #ff2e63; }
.t2-app { width: 100%; margin: 0 auto; padding: 24px var(--t2-page-gutter, clamp(16px, 3vw, 6cm)); }

/* Header — tam ekran genişlik */
.t2-header {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 24px;
  border-radius: 0;
  overflow: visible;
}
.t2-topbar { width: 100%; background: #ecebff; }
.t2-mainbar { width: 100%; background: #fff; }
.t2-nav {
  width: 100%;
  background: #fff;
  border-top: 1px solid #ecebff;
  padding-left: var(--t2-page-gutter, clamp(16px, 3vw, 6cm));
  padding-right: var(--t2-page-gutter, clamp(16px, 3vw, 6cm));
}

.t2-header-inner {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--t2-page-gutter, clamp(16px, 3vw, 6cm));
  padding-right: var(--t2-page-gutter, clamp(16px, 3vw, 6cm));
}
.t2-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 8px; padding-bottom: 8px;
  font-size: 12px; color: #6b7280; flex-wrap: wrap; gap: 8px;
}
.t2-topbar-left, .t2-topbar-right { display: flex; align-items: center; gap: 12px; }
.t2-topbar-right a { background: none; border: none; cursor: pointer; font: inherit; color: inherit; text-decoration: none; }
.t2-topbar-right a.t2-accent { color: #ff2e63; font-weight: 600; }
.t2-icon-btn { width: 24px; height: 24px; border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; color: #374151; text-decoration: none; }
.t2-icon-green { color: #16a34a; }
.t2-icon-blue { color: #2563eb; }
.t2-email { display: none; }
@media (min-width: 640px) { .t2-email { display: inline; } }

.t2-theme-toggle { display: flex; align-items: center; gap: 2px; background: #fff; border-radius: 999px; padding: 2px; }
.t2-theme-btn { width: 24px; height: 24px; border: none; border-radius: 50%; background: transparent; color: #9ca3af; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.t2-theme-btn.t2-theme-active { background: #ff2e63; color: #fff; }

.t2-mainbar-inner {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 560px) 1fr;
  align-items: center; gap: 16px;
  padding-top: 16px; padding-bottom: 16px;
}
.t2-logo {
  grid-column: 1; justify-self: start;
  display: flex; align-items: center; gap: 8px;
  font-size: 20px; font-weight: 700; color: #111; text-decoration: none;
}
.t2-logo-mark { flex-shrink: 0; }
.t2-search-wrap {
  grid-column: 2; justify-self: center; width: 100%; max-width: 560px;
  position: relative;
}
.t2-search {
  display: flex; align-items: center; gap: 8px;
  background: #f3f2fb; border-radius: 999px; padding: 10px 16px;
}
.t2-search input { flex: 1; border: none; background: transparent; outline: none; font-size: 14px; min-width: 0; }
.t2-search button { width: 32px; height: 32px; border-radius: 50%; background: #ff2e63; color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.t2-search-results {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px);
  background: #fff; border-radius: 20px;
  box-shadow: 0 8px 32px rgba(47, 57, 82, .14);
  max-height: 360px; overflow: auto; z-index: 1200;
  opacity: 0; visibility: hidden; transition: opacity .15s, visibility .15s;
}
.t2-search-results.t2-search-results-open {
  opacity: 1; visibility: visible;
}
.t2-search-results[hidden] { display: block !important; }
.t2-search-results[hidden]:not(.t2-search-results-open) {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.t2-search-group-title {
  padding: 10px 16px 6px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: #9ca3af;
  background: #fafafc; border-bottom: 1px solid #f3f4f6;
  position: sticky; top: 0; z-index: 1;
}
.t2-search-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; text-decoration: none; color: inherit;
  border-bottom: 1px solid #f3f4f6; transition: background .15s;
}
.t2-search-item:hover { background: #fafafc; }
.t2-search-item:last-child { border-bottom: 0; }
.t2-search-item-body { min-width: 0; flex: 1; }
.t2-search-item-body strong {
  display: block; font-size: 14px; font-weight: 600; color: #111827; line-height: 1.3;
}
.t2-search-item-body small {
  display: block; margin-top: 2px; font-size: 12px; color: #9ca3af;
}
.t2-search-item-side {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0;
}
.t2-search-badge {
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; white-space: nowrap;
}
.t2-search-badge-platform { background: linear-gradient(90deg, #934fd9, #d84455); color: #fff; }
.t2-search-badge-category { background: linear-gradient(90deg, #ff2e63, #ff6b35); color: #fff; }
.t2-search-badge-package { background: #eef0f4; color: #6b7280; }
.t2-search-price { font-size: 12px; font-weight: 700; color: #ff2e63; }
.t2-search-empty {
  padding: 20px; text-align: center; font-size: 14px; color: #9ca3af;
}
.t2-actions {
  grid-column: 3; justify-self: end;
  display: flex; align-items: center; gap: 12px;
}
@media (max-width: 900px) {
  .t2-mainbar-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .t2-logo { grid-column: 1; grid-row: 1; }
  .t2-actions { grid-column: 2; grid-row: 1; justify-self: end; }
  .t2-search-wrap { grid-column: 1 / -1; grid-row: 2; max-width: none; }
}
.t2-icon-badge {
  position: relative; width: 36px; height: 36px; border-radius: 50%;
  background: #f3f4f6; border: none; color: #374151;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
}
.t2-badge {
  position: absolute; top: -4px; right: -4px; min-width: 16px; height: 16px;
  border-radius: 999px; background: #ff2e63; color: #fff; font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.t2-notif-wrap { position: relative; }
.t2-notif-panel {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 50;
  width: 280px; background: #fff; border: 1px solid #f3f4f6; border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1); overflow: hidden;
}
.t2-notif-item {
  display: flex; align-items: flex-start; gap: 12px; width: 100%;
  padding: 12px 16px; border: none; background: #fff; text-align: left; cursor: pointer;
  border-bottom: 1px solid #f9fafb;
}
.t2-notif-item:hover { background: #f9fafb; }
.t2-notif-icon { color: #ff2e63; flex-shrink: 0; }
.t2-notif-body strong { display: block; font-size: 13px; color: #111; }
.t2-notif-body small { display: block; font-size: 11px; color: #6b7280; margin-top: 2px; }
.t2-badge-btn { width: 36px; height: 36px; border-radius: 50%; background: #f3f4f6; display: flex; align-items: center; justify-content: center; font-size: 18px; text-decoration: none; }
.t2-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: #ff2e63; color: #fff; border: none; border-radius: 999px;
  padding: 10px 20px; font-size: 14px; font-weight: 600; cursor: pointer;
  white-space: nowrap; text-decoration: none;
}
.t2-btn-primary:hover { background: #ff1654; color: #fff; }
.t2-btn-icon { display: inline-flex; }

.t2-nav-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  overflow-x: auto;
}
.t2-nav-list li {
  display: flex;
  align-items: stretch;
}
.t2-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  white-space: nowrap;
  text-decoration: none;
  color: #9d1b48;
  font-size: 16px;
  font-weight: 500;
  border-right: 1px solid #ecebff;
  transition: color .15s;
}
.t2-nav-list li:last-child .t2-nav-item { border-right: 0; }
.t2-nav-item:hover { color: #ff2e63; }
.t2-nav-icon {
  display: inline-flex;
  color: #9d1b48;
  flex-shrink: 0;
}
.t2-nav-item:hover .t2-nav-icon { color: #ff2e63; }
@media (max-width: 768px) {
  .t2-nav-item { padding: 12px 16px; font-size: 14px; }
}

/* Hero — referans SosyalEvin intro--area */
.t2-hero-area {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px;
}
@media (min-width: 1100px) {
  .t2-hero-area { grid-template-columns: minmax(0, 1fr) 200px; gap: 20px; }
}

.t2-hero-big {
  position: relative; background: #fff; border-radius: 30px;
  display: grid; grid-template-columns: 1fr; align-items: center;
  min-height: 380px; overflow: hidden;
}
@media (min-width: 768px) {
  .t2-hero-big { grid-template-columns: minmax(280px, 400px) minmax(0, 1fr); height: 380px; }
}
.t2-hero-big::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 18px 18px; opacity: .35;
}

.t2-hero-content { position: relative; z-index: 2; padding: 24px 20px 24px 32px; }
.t2-hero-badge {
  display: inline-flex; align-items: center; margin: 0 0 20px;
  font-size: 18px; font-weight: 500; color: #ff2e63;
  padding: 8px 20px; border-radius: 30px;
  border: 1px solid rgba(255, 46, 99, .2);
  background: linear-gradient(45deg, rgba(255,46,99,.08), rgba(255,46,99,.04));
}
.t2-hero-title {
  color: #111; font-size: 26px; line-height: 1.15; font-weight: 600; margin: 0;
}
.t2-hero-title > span { display: block; color: #ff2e63; font-size: 26px; font-weight: 600; }
.t2-hero-desc { margin: 8px 0 0; font-size: 15px; color: #6b7280; line-height: 1.5; max-width: 360px; }

.t2-hero-review { margin-top: 24px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.t2-hero-rating-area {
  display: flex; align-items: center; height: 42px;
  background: rgba(255, 46, 99, .12); border-radius: 30px; padding-left: 20px;
}
.t2-hero-stars { color: #ff2e63; font-size: 18px; letter-spacing: 2px; line-height: 1; }
.t2-hero-rating {
  display: flex; align-items: center; gap: 5px; height: 42px;
  margin-left: 12px; padding: 0 16px; border-radius: 30px;
  background: #ff2e63; color: #fff; font-size: 16px; font-weight: 700;
}
.t2-hero-play {
  width: 42px; height: 42px; border-radius: 30px; border: 1px solid #374151;
  background: transparent; color: #374151; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.t2-hero-play:hover { background: rgba(131, 128, 177, .12); }

.t2-hero-animation { position: relative; min-height: 280px; }
@media (min-width: 768px) { .t2-hero-animation { min-height: 0; height: 100%; } }
.t2-hero-back-path {
  position: absolute; width: 320px; height: 190px; background: #ff2e63;
  border-radius: 50px; top: 10px; right: 50px; transform: rotate(-15deg);
  z-index: 1; overflow: hidden;
}
.t2-hero-animation img { position: absolute; display: block; }
.t2-hero-bg { right: 0; bottom: 0; max-height: 100%; width: auto; z-index: 2; }
.t2-hero-girl { bottom: -1px; right: 60px; height: 340px; width: auto; z-index: 3; }

.t2-hero-mini {
  display: flex; flex-direction: row; gap: 12px;
}
@media (min-width: 1100px) {
  .t2-hero-mini { flex-direction: column; gap: 15px; }
}
.t2-hero-small {
  flex: 1; position: relative; border-radius: 30px; background: #3f4250;
  min-height: 170px; overflow: hidden;
}
@media (min-width: 1100px) {
  .t2-hero-small { flex: none; width: 100%; height: 182px; min-height: 0; }
}
.t2-hero-small-pink { background: #ff2e63; }
.t2-hero-small::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 65%; z-index: 2;
  border-radius: 30px;
  background: linear-gradient(to top, rgba(46,49,61,.98), rgba(46,49,61,.85), transparent);
}
.t2-hero-small-pink::after {
  background: linear-gradient(to top, #ef244a, rgba(239,36,74,.92), transparent);
}
.t2-hero-small > img {
  position: absolute; left: 50%; transform: translateX(-50%); top: 8px;
  height: auto; max-height: 72%; width: auto; z-index: 1; pointer-events: none;
}
.t2-hero-small-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 16px 20px 20px; text-align: center;
}
.t2-hero-small-content > span {
  display: block; color: #fff; text-transform: uppercase;
  font-size: 11px; margin-bottom: 8px; line-height: 1.3;
}
.t2-hero-small-content strong {
  display: block; font-size: 18px; font-weight: 700; text-transform: uppercase;
}
.t2-hero-small-btn {
  display: block; width: 100%; margin-top: 10px; padding: 8px 12px;
  border: 1px solid #fff; border-radius: 30px; color: #fff;
  font-size: 12px; font-weight: 600; text-align: center; text-decoration: none;
  transition: background .2s;
}
.t2-hero-small-btn:hover { background: rgba(255,255,255,.08); color: #fff; }

@media (max-width: 767px) {
  .t2-hero-big { min-height: 450px; background: #1a1d2e; }
  .t2-hero-big::before { opacity: .15; }
  .t2-hero-content {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
    padding: 20px; text-align: center;
  }
  .t2-hero-badge { margin: 0 auto 12px; font-size: 14px; }
  .t2-hero-title, .t2-hero-title > span { color: #fff; font-size: 22px; }
  .t2-hero-desc { color: rgba(255,255,255,.75); max-width: none; margin: 8px auto 0; }
  .t2-hero-review { justify-content: center; margin-top: 16px; }
  .t2-hero-rating-area { background: rgba(255,255,255,.12); }
  .t2-hero-stars { color: #fff; }
  .t2-hero-play { border-color: #fff; color: #fff; }
  .t2-hero-back-path, .t2-hero-bg { display: none; }
  .t2-hero-girl {
    left: 50%; right: auto; transform: translateX(-50%);
    height: 320px; bottom: 120px;
  }
  .t2-hero-animation { min-height: 450px; }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .t2-hero-area { grid-template-columns: 1fr 340px; }
  .t2-hero-mini { flex-direction: column; }
  .t2-hero-small { height: 182px; }
}

/* Platforms — referans platform--list */
.t2-section { margin-top: 24px; }
.t2-platforms-section { margin-top: 30px; }
.t2-platforms-head {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 22px; color: #111827; margin-bottom: 20px;
}
.t2-platforms-head i { color: #ff2e63; font-size: 22px; line-height: 1; }
.t2-platforms-head h2 { margin: 0; font-size: inherit; font-weight: inherit; }
.t2-platforms-area { display: flex; flex-direction: column; gap: 10px; }
.t2-platforms {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
@media (min-width: 640px) { .t2-platforms { grid-template-columns: repeat(6, 1fr); } }
@media (min-width: 768px) { .t2-platforms { grid-template-columns: repeat(8, 1fr); } }

.t2-platform {
  background: var(--p, #ff2e63);
  padding: 10px 5px; border-radius: 25px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; color: #fff; text-transform: uppercase;
  position: relative; z-index: 1; user-select: none;
  aspect-ratio: 1; font-size: 11px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.02em;
}
@media (min-width: 768px) { .t2-platform { font-size: 12px; padding: 10px; } }
.t2-platform::before {
  content: ""; position: absolute; inset: 0; border-radius: 25px;
  background: url(/tema-2/images/path-4.webp); background-size: 120px;
  opacity: .04; z-index: -1; pointer-events: none;
}
.t2-platform > i {
  font-size: 36px; height: 40px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s; position: relative; top: 0;
}
@media (min-width: 768px) { .t2-platform > i { font-size: 50px; height: 56px; } }
.t2-platform:hover > i { top: -5px; }
.t2-platform > span {
  text-align: center; line-height: 1.15; font-size: 9px; padding: 0 2px;
}
@media (min-width: 768px) { .t2-platform > span { font-size: 11px; } }
.t2-platform-dark { color: #1f2937; }
.t2-platform-dark > i { color: #1f2937; }

/* Discover */
.t2-discover { margin-top: 40px; background: #0f1117; border-radius: 24px; padding: 32px; position: relative; overflow: hidden; }
.t2-discover::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 160px; height: 4px; background: #ff2e63; border-radius: 999px; }
.t2-discover-head { text-align: center; margin-bottom: 24px; }
.t2-discover-head h2 { color: #fff; font-size: 1.5rem; letter-spacing: 0.05em; margin-top: 4px; }
.t2-discover-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .t2-discover-grid { grid-template-columns: repeat(3, 1fr); } }
.t2-discover-col-head { border-left: 2px solid #ff2e63; padding-left: 12px; margin-bottom: 12px; }
.t2-discover-col-head small { color: #ff2e63; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.t2-discover-col-head strong { color: #fff; display: block; font-size: 14px; }
.t2-product-row { display: flex; align-items: center; gap: 12px; background: #1a1d2e; border-radius: 12px; padding: 12px; margin-bottom: 8px; transition: background 0.15s; }
.t2-product-row:hover { background: #23273a; }
.t2-product-icon { width: 40px; height: 40px; border-radius: 8px; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.t2-product-info { flex: 1; min-width: 0; }
.t2-product-info div { color: #fff; font-size: 14px; }
.t2-product-info small { color: rgba(255,255,255,.5); font-size: 12px; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t2-product-price { color: #fff; font-size: 14px; white-space: nowrap; }
.t2-cart-icon { width: 28px; height: 28px; background: #ff2e63; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }

/* FAQ */
.t2-faq-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 16px; color: #111; }
.t2-faq-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 768px) { .t2-faq-grid { grid-template-columns: 1fr 1fr; } }
.t2-faq-item { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #f3f4f6; border-radius: 12px; padding: 16px; font-size: 14px; color: #1f2937; transition: box-shadow 0.15s; }
.t2-faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,.06); }

/* Blog */
.t2-blog-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
.t2-blog-head h2 { font-size: 1.25rem; font-weight: 700; }
.t2-outline-btn { border: 1px solid #ff2e63; color: #ff2e63; border-radius: 999px; padding: 6px 16px; font-size: 14px; }
.t2-outline-btn:hover { background: #ff2e63; color: #fff; }
.t2-blog-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .t2-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .t2-blog-grid { grid-template-columns: repeat(4, 1fr); } }
.t2-blog-card { background: #fff; border: 1px solid #f3f4f6; border-radius: 16px; overflow: hidden; transition: box-shadow 0.15s; }
.t2-blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.t2-blog-img { aspect-ratio: 4/3; background: linear-gradient(135deg, #ffe0eb, #f0e6ff); }
.t2-blog-body { padding: 16px; }
.t2-blog-body small { color: #9ca3af; font-size: 12px; }
.t2-blog-body h3 { font-size: 14px; margin-top: 4px; min-height: 2.5rem; line-height: 1.4; color: #111; }
.t2-blog-body a { display: inline-block; margin-top: 12px; font-size: 12px; color: #ff2e63; }

/* SEO */
.t2-seo { margin-top: 40px; background: #fff; border: 1px solid #f3f4f6; border-radius: 16px; padding: 24px 32px; font-size: 14px; color: #374151; line-height: 1.7; }
.t2-seo h3 { color: #111; margin-bottom: 8px; font-size: 1rem; }
.t2-seo p { margin-bottom: 20px; }
.t2-seo p:last-child { margin-bottom: 0; }

/* Footer — SosyalEvin birebir referans, tam ekran */
.t2-footer-wrap {
  margin-top: 70px;
}
.t2-footer-container {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--t2-page-gutter, clamp(16px, 3vw, 6cm));
  padding-right: var(--t2-page-gutter, clamp(16px, 3vw, 6cm));
}

.t2-footer-top {
  margin-top: 0;
  display: flex;
  align-items: center;
  background: #1e1e2e;
  padding: 25px;
  border-radius: 30px 30px 0 0;
  margin-bottom: -30px;
  position: relative;
  z-index: 2;
}
.t2-footer-contact {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.t2-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.t2-footer-contact-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 12px;
  background: #ff2e63;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.t2-footer-contact-text {
  color: rgba(255, 255, 255, .69);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.3;
}
.t2-footer-contact-text span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.t2-footer-logo-link {
  display: flex;
  margin-left: auto;
  margin-right: 25px;
  padding-right: 25px;
  border-right: 1px solid rgba(255, 255, 255, .125);
  text-decoration: none;
  flex-shrink: 0;
}
.t2-footer-logo-link img {
  display: block;
  width: 200px;
  height: 40px;
  object-fit: contain;
}
.t2-footer-socials {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.t2-footer-social {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #ff2e63;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: opacity .2s;
}
.t2-footer-social:hover { opacity: .85; }

.t2-footer {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background: #1e1e2e;
  border-top: 5px solid #ff2e63;
  padding: 40px 0 0;
  z-index: 1;
}
.t2-footer-actions { width: 100%; }
.t2-footer-tabs-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.t2-footer-tab-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #191927;
  border-radius: 50px;
  padding: 8px;
  width: 100%;
}
.t2-footer-tab-btn {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  height: 44px;
  padding: 0 24px;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background .2s;
}
.t2-footer-tab-btn:hover { background: rgba(255, 255, 255, .03); }
.t2-footer-tab-btn-active {
  background: #ff2e63 !important;
}

.t2-footer-tab-panel { width: 100%; display: none; }
.t2-footer-tab-panel-active { display: block; }
.t2-footer-menu-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}
@media (max-width: 900px) {
  .t2-footer-menu-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .t2-footer-menu-list { grid-template-columns: 1fr; }
}

.t2-footer-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 30px;
  background: #272836;
  color: #e8e8f3;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: background .2s;
  position: relative;
}
.t2-footer-menu-item::before {
  content: "";
  position: relative;
  width: 12px;
  height: 6px;
  border-radius: 10px;
  background: #ff2e63;
  flex-shrink: 0;
  transition: width .2s;
}
.t2-footer-menu-item:hover {
  background: #313342;
}
.t2-footer-menu-item:hover::before { width: 18px; }
.t2-footer-menu-item-hidden { display: none; }
.t2-footer-tab-expanded .t2-footer-menu-item-hidden { display: flex; }

.t2-footer-more {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.t2-footer-more-btn {
  border: 0;
  background: #ff2e63;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 30px;
  border-radius: 30px;
  min-width: 200px;
  cursor: pointer;
  font-family: inherit;
  transition: min-width .2s, background .2s;
}
.t2-footer-more-btn:hover {
  background: #ff1654;
  min-width: 220px;
}

.t2-footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .063);
}
.t2-footer-detail {
  padding: 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #d8dae9;
}
.t2-footer-copy {
  font-size: 13px;
  color: #d8dae9;
}
.t2-footer-payments {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-wrap: wrap;
}
.t2-footer-payments img {
  display: block;
  height: auto;
  max-height: 24px;
}

@media (max-width: 992px) {
  .t2-footer-top {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .t2-footer-contact {
    width: 100%;
    justify-content: center;
  }
  .t2-footer-logo-link {
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
    order: -1;
    width: 100%;
    justify-content: center;
  }
  .t2-footer-socials {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .t2-footer-tab-btn {
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }
  .t2-footer-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .t2-footer-payments { margin-left: 0; justify-content: center; }
}
