  .modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e4e4e7;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
  }

  .modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  }

  .modern-footer .container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 0.6fr 2fr;
    gap: 20px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-brand {
    max-width: 350px;
  }

  .brand-logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
    aspect-ratio: 4 / 1;
    margin-bottom: 24px;
  }

  .brand-description {
    color: #a1a1aa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .social-links {
    display: flex;
    gap: 12px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #e4e4e7;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 0 transparent;
  }

  .social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .footer-map-wrap {
    margin-top: 28px;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .footer-map-wrap iframe {
    display: block;
    width: 100%;
    max-width: 350px;
    height: 220px;
    border: 0;
  }

  /* ===== Footer Tab Menu (tema mavisi) ===== */
  .footer-tabs-wrap {
    min-width: 0;
  }

  .footer-tabs-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    padding-bottom: 4px;
    position: relative;
    z-index: 2;
  }

  .footer-tab-btn {
    appearance: none;
    background: transparent;
    color: #cfd5e6;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 26px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    font-family: inherit;
  }

  .footer-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.10);
  }

  .footer-tab-btn.is-active {
    background: linear-gradient(135deg, #2c3fb0 0%, #162a8e 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 22px rgba(22, 42, 142, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  }

  .footer-tab-panel {
    display: none;
    animation: footerTabFade .25s ease both;
  }

  .footer-tab-panel.is-active {
    display: block;
  }

  @keyframes footerTabFade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .footer-tab-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .footer-tab-grid-item.is-gizli {
    display: none;
  }

  .footer-tab-grid-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    color: #d8ddee;
    font-size: 13.5px;
    text-decoration: none;
    line-height: 1.35;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    min-height: 44px;
  }

  .footer-tab-grid-item a:hover {
    color: #ffffff;
    background: rgba(44, 63, 176, 0.18);
    border-color: rgba(82, 105, 220, 0.45);
    transform: translateY(-1px);
  }

  .footer-tab-dot {
    flex-shrink: 0;
    width: 14px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #4b66ff, #162a8e);
    box-shadow: 0 0 8px rgba(75, 102, 255, 0.5);
  }

  .footer-tab-grid-item a:hover .footer-tab-dot {
    background: linear-gradient(90deg, #7a8fff, #2c3fb0);
  }

  .footer-tab-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .footer-tab-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    position: relative;
    z-index: 2;
  }

  .footer-tab-more-btn {
    appearance: none;
    border: none;
    cursor: pointer;
    padding: 12px 32px;
    background: linear-gradient(135deg, #2c3fb0 0%, #162a8e 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(22, 42, 142, 0.45);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    font-family: inherit;
  }

  .footer-tab-more-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow: 0 16px 32px rgba(22, 42, 142, 0.55);
  }

  .footer-tab-more-btn:active {
    transform: translateY(0);
  }

  .no-content {
    color: #71717a;
    font-size: 14px;
    font-style: italic;
  }

  .footer-below-content {
    max-width: 1420px;
    margin: 0 auto;
    padding: 12px 24px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer-footbank-wrap {
    text-align: left;
    flex-shrink: 0;
  }

  .footer-footbank-img {
    max-width: 280px;
    width: auto;
    height: auto;
    display: inline-block;
    vertical-align: bottom;
  }

  .footer-dmca-wrap {
    flex-shrink: 0;
    text-align: right;
  }

  .footer-dmca-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.25s ease;
  }

  .footer-dmca-link:hover {
    opacity: 0.9;
  }

  .footer-dmca-badge {
    display: inline-flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 6px;
  }

  .footer-dmca-badge-left {
    background: #22c55e;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    letter-spacing: 0.5px;
  }

  .footer-dmca-badge-right {
    background: #1e293b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    letter-spacing: 0.5px;
  }

  .footer-dmca-text {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
    gap: 32px;
  }

  .footer-payment img {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }

  .footer-payment img:hover {
    opacity: 1;
  }

  .footer-copyright {
    color: #71717a;
    font-size: 14px;
  }

  footer .footer-bottom {
    background: #0e1c61;
    padding: 10px 0;
    color: white !important;
  }

  /* Responsive */
  @media (max-width: 1280px) {
    .footer-tab-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 1024px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .footer-tab-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-brand {
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .modern-footer {
      padding: 60px 0 100px;
    }

    .footer-tab-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .footer-tab-btn {
      padding: 9px 18px;
      font-size: 12.5px;
    }

    .footer-tab-grid-item a {
      padding: 10px 14px;
      font-size: 12.5px;
      min-height: 40px;
    }

    .footer-below-content {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding-bottom: 16px;
    }

    .footer-footbank-wrap {
      text-align: center;
      padding-bottom: 0;
    }

    .footer-footbank-img {
      max-width: 160px;
    }

    .footer-dmca-wrap {
      text-align: center;
    }

    .footer-dmca-link {
      align-items: center;
    }

    .footer-dmca-badge-left,
    .footer-dmca-badge-right {
      font-size: 12px;
      padding: 6px 12px;
    }

    .footer-dmca-text {
      font-size: 11px;
    }

    .footer-content {
      gap: 50px;
      padding-bottom: 40px;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 24px;
    }

    .footer-copyright {
      text-align: center;
    }

    .social-links {
      justify-content: center;
    }

    .footer-map-wrap {
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
    }

    .footer-map-wrap iframe {
      max-width: 100%;
      height: 200px;
    }
  }

  @media (max-width: 480px) {
    .modern-footer {
      padding: 40px 0 100px;
    }

    .footer-content {
      gap: 40px;
      padding-bottom: 32px;
    }

    .brand-logo img {
      height: 32px;
      margin-bottom: 20px;
    }

    .brand-description {
      font-size: 14px;
      margin-bottom: 24px;
    }

    .social-link {
      width: 36px;
      height: 36px;
    }

    .footer-tab-grid {
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .footer-tab-btn {
      padding: 8px 14px;
      font-size: 11.5px;
    }

    .footer-tab-grid-item a {
      padding: 10px 14px;
      font-size: 13px;
    }

    .footer-tab-more-btn {
      padding: 11px 24px;
      font-size: 13px;
    }

    .footer-payment img {
      height: 28px;
    }

    .footer-copyright {
      font-size: 13px;
    }

    .footer-map-wrap iframe {
      height: 180px;
    }
  }
  .sepet-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .sepet-modal.acik {
    display: flex;
  }
  .sepet-modal-arka {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.55);
    backdrop-filter: blur(4px);
  }
  .sepet-modal-icerik {
    position: relative;
    max-width: 520px;
    margin: 0 24px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 24px 20px;
    box-shadow: 0 24px 60px rgba(15,23,42,0.25);
  }
  .sepet-modal-kapat {
    position: absolute;
    right: 16px;
    top: 12px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
  }
  .sepet-modal-baslik {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0f172a;
  }
  .sepet-modal-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
  }
  .sepet-modal-urun {
    font-weight: 600;
    margin-bottom: 16px;
    color: #111827;
  }
  @media (max-width: 575.98px) {
    .sepet-modal-icerik {
      margin: 0 16px;
      padding: 20px 16px 16px;
    }
  }
