  :root{
  --bg:#f3f4f6;
  --bg-soft:#e5e7eb;
  --card:#ffffff;
  --bg-card:#ffffff;
  --accent:#2563eb;
  --accent-soft:rgba(37,99,235,.12);
  --text:#111827;
  --text-soft:#6b7280;
  --border:#e5e7eb;
  --radius-lg:18px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  overflow-x:hidden;
}

body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  min-height:100vh;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none;}
button{font-family:inherit;}
.hidden{display:none!important;}

.page-shell{
  max-width:1200px;
  margin:0 auto;
  padding:16px 16px 40px;
}

/* HEADER */
header.page-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-circle{
  width:38px;
  height:38px;
  border-radius:999px;
  background:radial-gradient(circle at 30% 0,#60a5fa,#2563eb);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#f9fafb;
  font-weight:700;
  font-size:20px;
  box-shadow:0 10px 24px rgba(37,99,235,.45);
}

.logo-text-title{
  font-weight:700;
  font-size:20px;
  line-height:1.05;
  letter-spacing:.04em;
}

.logo-text-sub{
  font-size:12px;
  line-height:1.15;
  color:var(--text-soft);
}

.site-logo{
  height:64px;
  width:auto;
  object-fit:contain;
}

.topbar-right{
  display:flex;
  align-items:center;
  gap:10px;
}

.home-icon{
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  cursor:pointer;
  font-size:17px;
}

.topbar-publish-btn{
  min-width:94px;
  min-height:52px;
  padding:6px 9px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:transparent;
  color:#111827;
  font-size:12px;
  font-weight:700;
  line-height:1.05;
  text-align:center;
  border:1px solid transparent;
  box-shadow:none;
}

.topbar-publish-btn:hover{
  background:#f8fafc;
  border-color:#e5e7eb;
}

.topbar-publish-icon{
  width:34px;
  height:34px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ffffff;
  color:#111827;
  border:1px solid #d1d5db;
  font-size:30px;
  font-weight:800;
  line-height:.82;
  padding-bottom:2px;
}

.topbar-publish-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:1px;
  white-space:nowrap;
}

.menu-toggle-btn{
  width:40px;
  height:40px;
  min-width:40px;
  border:none;
  border-radius:12px;
  background:#ffffff;
  color:#111827;
  box-shadow:0 8px 18px rgba(15,23,42,.08);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  line-height:1;
  transition:all .18s ease;
}

.menu-toggle-btn:hover{
  background:#f8fafc;
  transform:translateY(-1px);
}

.mobile-app-download-bar{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  max-width:calc(100vw - 24px);
  width:auto;
  box-sizing:border-box;
  overflow:hidden;
  z-index:9997;
  display:flex;
  align-items:center;
  gap:10px;
  min-height:58px;
  padding:10px 12px;
  border-radius:16px;
  background:#ffffff;
  border:1px solid var(--border);
  box-shadow:0 18px 40px rgba(15,23,42,.18);
}

.mobile-app-download-text{
  flex:1;
  min-width:0;
  color:#374151;
  font-size:12px;
  font-weight:600;
  line-height:1.35;
}

.mobile-app-download-cta{
  flex:0 0 auto;
  max-width:140px;
  min-height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 12px;
  border-radius:999px;
  background:var(--accent);
  color:#ffffff;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.mobile-app-download-cta img{
  display:block;
  width:100%;
  max-width:140px;
  height:auto;
  object-fit:contain;
}

.mobile-app-download-close{
  flex:0 0 auto;
  width:30px;
  height:30px;
  border:none;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#f1f5f9;
  color:#475569;
  font-size:18px;
  line-height:1;
  cursor:pointer;
}

/* HERO */
.hero-section{
  margin-bottom:14px;
}

.hero-card{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  min-height:320px;
  height:320px;
  cursor:pointer;
  background:#0f172a;
  box-shadow:0 18px 40px rgba(37,99,235,.20);
}

.hero-card[style*="display:none"],
.hero-card[style*="display: none"]{
  display:flex !important;
  visibility:hidden;
}

.hero-right{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
}

.hero-img{
  position:absolute;
  inset:0;
  background:#020617;
}

.hero-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-gradient-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(90deg, rgba(15,23,42,.68) 0%, rgba(15,23,42,.34) 38%, rgba(15,23,42,.12) 68%, rgba(15,23,42,.08) 100%),
    linear-gradient(180deg, rgba(15,23,42,.04) 0%, rgba(15,23,42,.08) 36%, rgba(15,23,42,.42) 100%);
}

.hero-left{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:3;
  width:100%;
  padding:18px 20px 18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:8px;
  color:#eff6ff;
}

.hero-eyebrow{
  font-size:11px;
  opacity:.96;
  display:inline-flex;
  align-items:center;
  gap:6px;
  width:max-content;
  max-width:100%;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(15,23,42,.38);
  backdrop-filter:blur(8px);
  margin-bottom:0;
}

.hero-eyebrow span.badge-cat{
  padding:2px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:10px;
}

.hero-title{
  max-width:420px;
  font-size:28px;
  font-weight:700;
  line-height:1.14;
  margin-bottom:2px;
  text-shadow:0 2px 10px rgba(0,0,0,.20);
}

.hero-brand{
  max-width:520px;
  font-size:15px;
  opacity:.94;
  margin-bottom:2px;
}

.hero-dates{
  font-size:12px;
  opacity:.9;
  margin-bottom:4px;
}

.hero-bottom-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:12px;
}

.hero-btn{
  border:none;
  border-radius:999px;
  padding:9px 16px;
  font-size:12px;
  font-weight:600;
  cursor:pointer;
  background:#fde68a;
  color:#92400e;
  display:inline-flex;
  align-items:center;
  gap:6px;
  box-shadow:0 10px 24px rgba(15,23,42,.28);
}

.hero-views{
  color:rgba(255,255,255,.95);
  font-size:12px;
  text-shadow:0 1px 6px rgba(0,0,0,.25);
}

.hero-dots{
  position:absolute;
  right:16px;
  bottom:14px;
  display:flex;
  gap:6px;
  z-index:4;
}

.hero-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.45);
  cursor:pointer;
  transition:all .18s ease;
}

.hero-dot.active{
  width:20px;
  background:#fefce8;
}

/* FILTERS */
.filters-bar{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
  width:100%;
}

.pill-chip{
  display:none !important;
}

.status-chips{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 1 auto;
  flex-wrap:nowrap;
  min-width:max-content;
  margin:0;
}

.chip{
  height:46px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:#fff;
  font-size:13px;
  cursor:pointer;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  flex:0 0 auto;
}

.chip:hover{
  border-color:#2563eb;
  color:#2563eb;
}

.chip.active{
  background:#2563eb;
  color:#fff;
  border-color:#2563eb;
}

.filters-row{
  display:flex;
  align-items:center;
  gap:10px;
  flex:1 1 auto;
  min-width:0;
  width:auto;
}

.filter-group{
  display:flex;
  align-items:center;
  min-height:52px;
  height:52px;
  background:#fff;
  border-radius:16px;
  border:1px solid var(--border);
  padding:0 14px;
  font-size:13px;
  color:var(--text-soft);
  width:100%;
  min-width:0;
  overflow:hidden;
}

.filter-group label{
  margin-right:8px;
  white-space:nowrap;
  font-size:11px;
  flex:0 0 auto;
}

.filter-group input,
.filter-group select{
  border:none;
  outline:none;
  background:transparent;
  font-size:13px;
  padding:0 4px;
  min-width:0;
  width:100%;
  height:100%;
  color:var(--text);
}

.filter-group input::placeholder{
  color:#9ca3af;
}

.filter-search{
  flex:1 1 auto;
  min-width:0;
}

.filter-sort{
  width:220px;
  min-width:220px;
  flex:0 0 220px;
}

.map-toggle-label{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:52px;
  height:52px;
  padding:0 16px;
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
  font-size:12px;
  color:var(--text-soft);
  white-space:nowrap;
  cursor:pointer;
  user-select:none;
  flex:0 0 120px;
  min-width:120px;
  margin-left:0;
}

.map-toggle-label input{
  margin:0;
  width:auto;
  height:auto;
  min-width:auto;
  accent-color:#2563eb;
}

.business-promo-card{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.35fr);
  gap:22px;
  align-items:stretch;
  padding:22px;
  border-radius:22px;
  background:
    linear-gradient(135deg, rgba(37,99,235,.08), rgba(249,115,22,.08)),
    #ffffff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  overflow:hidden;
}

.business-promo-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  min-width:0;
}

.business-promo-eyebrow{
  width:max-content;
  max-width:100%;
  margin-bottom:10px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(37,99,235,.12);
  color:#1d4ed8;
  font-size:12px;
  font-weight:800;
}

.business-promo-content h2{
  max-width:560px;
  color:#0f172a;
  font-size:26px;
  line-height:1.15;
  margin:0 0 10px;
}

.business-promo-content p{
  max-width:600px;
  color:#475569;
  font-size:14px;
  line-height:1.55;
  margin:0 0 16px;
}

.business-promo-cta{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border-radius:999px;
  background:#2563eb;
  color:#ffffff;
  font-size:13px;
  font-weight:800;
  box-shadow:0 12px 24px rgba(37,99,235,.22);
  transition:background .18s ease, transform .18s ease;
}

.detail-box-body a.business-promo-cta,
a.business-promo-cta{
  color:#ffffff;
  text-decoration:none;
}

.business-promo-cta:hover{
  background:#1d4ed8;
  transform:translateY(-1px);
}

.detail-box-body a.business-promo-cta:hover{
  color:#ffffff;
  text-decoration:none;
}

.business-promo-side{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.business-feature-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:8px;
}

.business-feature-card{
  min-height:86px;
  padding:12px 10px;
  border-radius:16px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(15,23,42,.08);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:7px;
}

.business-feature-card span{
  width:30px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:#eff6ff;
  font-size:16px;
}

.business-feature-card strong{
  color:#111827;
  font-size:11.5px;
  line-height:1.22;
}

.business-benefit-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 14px;
  margin:0;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.07);
  list-style:none;
}

.business-benefit-list li{
  position:relative;
  padding-left:18px;
  color:#475569;
  font-size:12px;
  line-height:1.4;
}

.business-benefit-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.45em;
  width:7px;
  height:7px;
  border-radius:999px;
  background:#f97316;
}

.business-page{
  margin:-4px;
}

/* TABLET + MOBILE */
@media (max-width: 768px){
  .filters-bar{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .status-chips{
    width:100%;
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    gap:8px;
    padding-bottom:4px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .status-chips::-webkit-scrollbar{
    display:none;
  }

  .chip{
    flex:0 0 auto;
    height:40px;
    padding:0 14px;
    font-size:12px;
  }

  .filters-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    width:100%;
  }

  .filter-search{
    grid-column:1 / -1;
    width:100%;
    min-width:0;
    min-height:48px;
    height:48px;
    padding:0 12px;
    border-radius:14px;
  }

  .filter-sort{
    grid-column:1;
    width:100%;
    min-width:0;
    min-height:48px;
    height:48px;
    border-radius:14px;
  }

  .map-toggle-label{
    grid-column:2;
    width:100%;
    min-width:0;
    min-height:48px;
    height:48px;
    border-radius:14px;
    justify-content:center;
    padding:0 12px;
  }

  .filter-group input,
  .filter-group select{
    min-height:46px;
    font-size:13px;
  }
}



/* SECTION */
.section-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
  margin-top:4px;
}

.section-title{
  font-size:14px;
  font-weight:600;
}

.section-sub{
  font-size:11px;
  color:var(--text-soft);
}

/* GRID */
.campaign-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

/* CARD */
.card{
  position:relative;
  overflow:hidden;
  background:var(--card);
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow:0 10px 20px rgba(15,23,42,.05);
  padding:10px;
  font-size:12px;
  display:flex;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  transition:transform .12s, box-shadow .12s;
}

.card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(15,23,42,.08);
}

.card-image-wrap{
  width:100%;
  aspect-ratio:16 / 9;
  border-radius:14px;
  overflow:hidden;
  background:#0f172a;
  max-height:130px;
}

.card-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.card-top-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:6px;
  margin-top:4px;
}

.card-top-line span:first-child{
  font-size:10px;
  padding:3px 7px;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
}

.card-title{
  font-size:13px;
  font-weight:600;
}

.card-brand{
  font-size:11px;
  color:var(--text-soft);
}

.card-brand-row{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:2px;
}

.card-brand-logo{
  width:28px;
  height:28px;
  min-width:28px;
  border-radius:999px;
  overflow:hidden;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
}

.card-brand-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.card-brand-fallback{
  font-size:11px;
  font-weight:700;
  color:#475569;
}

.card-brand-name{
  font-size:11px;
  color:var(--text-soft);
  line-height:1.2;
}

.card-dates{
  font-size:11px;
  color:var(--text-soft);
}

.card-bottom-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:11px;
  color:var(--text-soft);
  margin-top:2px;
}

.card-countdown{
  font-size:11px;
  color:#b45309;
  background:#fffbeb;
  border-radius:999px;
  padding:3px 7px;
  display:inline-block;
  margin-top:4px;
}

/* STATUS */
.card-status-badge{
  font-size:10px;
  padding:3px 7px;
  border-radius:999px;
  font-weight:600;
  white-space:nowrap;
}

.card-status-badge.active{
  background:#dcfce7;
  color:#166534;
}

.card-status-badge.upcoming{
  background:#fef3c7;
  color:#92400e;
}

.card-status-badge.expired{
  background:#fee2e2;
  color:#b91c1c;
}

.card-status-expired{
  opacity:.92;
}

.card-status-upcoming{
  opacity:.97;
}

.card-status-expired::after,
.card-status-upcoming::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:30%;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
  pointer-events:none;
}

.card-status-expired .card-image{
  filter:grayscale(.08);
}

/* DETAIL */
.detail-shell{
  background:#ffffff;
  border-radius:20px;
  border:1px solid var(--border);
  box-shadow:0 14px 30px rgba(15,23,42,.06);
  padding:16px 16px 18px;
  margin-top:8px;
}

.detail-header{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.detail-image-wrap{
  width:100%;
  border-radius:16px;
  overflow:hidden;
  background:#0f172a;
}

/* SADECE MASAÜSTÜ */
@media (min-width: 768px){

  .detail-image-wrap.vertical{
    height:420px;
    background:transparent; /* siyah kaldırıldı */
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .detail-image-wrap.vertical img{
    width:100%;
    height:100%;
    object-fit:contain;
  }

}

.detail-image-wrap img{
  width:100%;
  height:100%;
  object-fit:contain;  /* KIRPMA YOK */
  display:block;
}

.detail-image-meta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:6px;
  font-size:11px;
  color:var(--text-soft);
}

.detail-category-pill{
  padding:3px 8px;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:11px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:all .18s ease;
}

.detail-category-pill:hover{
  background:#dbeafe;
}

.detail-main{
  flex:1;
  min-width:220px;
}

.detail-title{
  font-size:20px;
  font-weight:600;
  margin-bottom:4px;
}

.detail-brand-link{
  font-size:13px;
  color:#2563eb;
  cursor:pointer;
  margin-bottom:4px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.detail-brand-logo{
  width:34px;
  height:34px;
  min-width:34px;
  border-radius:999px;
  overflow:hidden;
  background:#ffffff;
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(15,23,42,.06);
}

.detail-brand-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.detail-brand-fallback{
  font-size:13px;
  font-weight:700;
  color:#475569;
}

.detail-brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}

.detail-brand-label{
  font-size:10px;
  color:var(--text-soft);
}

.detail-brand-name{
  font-size:14px;
  font-weight:600;
  color:#2563eb;
}

.detail-dates{
  font-size:12px;
  color:var(--text-soft);
  margin-bottom:8px;
}

.detail-countdown{
  font-size:13px;
  font-weight:500;
  margin-bottom:8px;
  color:#b45309;
  background:#fffbeb;
  border-radius:999px;
  padding:6px 10px;
  display:inline-block;
}

.detail-desc{
  font-size:13px;
  margin-bottom:8px;
}

.detail-terms{
  font-size:12px;
  color:var(--text-soft);
}

.detail-links{
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  font-size:11px;
}

.detail-link-pill{
  font-size:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#f8fafc;
  border:1px solid var(--border);
  transition:all .2s ease;
}

.detail-link-pill img{
  width:22px;
  height:22px;
  display:block;
}

.detail-link-pill:hover{
  background:#eef2ff;
  transform:translateY(-1px);
}

.detail-meta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
  font-size:11px;
  color:var(--text-soft);
}

.accordion-header{
  width:100%;
  margin-top:10px;
  padding:10px 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background:linear-gradient(135deg,#ffffff,#f8fafc);
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:12px;
  cursor:pointer;
  font-weight:600;
  transition:all .25s ease;
  box-shadow:0 4px 12px rgba(0,0,0,0.04);
}

.accordion-header:hover{
  background:#f1f5f9;
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
}

.accordion-panel{
  display:none;
  margin-top:6px;
}

.accordion-panel.open{
  display:block;
  animation:fadeSlide .25s ease;
}

@keyframes fadeSlide{
  from{opacity:0;transform:translateY(-6px);}
  to{opacity:1;transform:translateY(0);}
}

.detail-desc,
.detail-terms{
  line-height:1.7;
}

.detail-desc h1,
.detail-terms h1{
  font-size:22px;
  margin:18px 0 10px;
  font-weight:700;
}

.detail-desc h2,
.detail-terms h2{
  font-size:18px;
  margin:16px 0 8px;
  font-weight:600;
}

.detail-desc h3,
.detail-terms h3{
  font-size:15px;
  margin:14px 0 6px;
  font-weight:600;
  color:#1d4ed8;
}

.detail-desc p,
.detail-terms p{
  margin:8px 0;
}

.detail-desc ul,
.detail-terms ul{
  margin:8px 0;
  padding-left:20px;
}

.detail-desc li,
.detail-terms li{
  margin-bottom:6px;
}

.detail-desc strong,
.detail-terms strong{
  font-weight:600;
}

.detail-desc em,
.detail-terms em{
  font-style:italic;
}

.detail-desc a,
.detail-terms a{
  color:#2563eb;
  text-decoration:none;
  font-weight:500;
}

.detail-desc a:hover,
.detail-terms a:hover{
  text-decoration:underline;
}

.detail-desc blockquote,
.detail-terms blockquote{
  border-left:4px solid #2563eb;
  padding:8px 12px;
  margin:12px 0;
  background:#f8fafc;
  border-radius:8px;
  font-style:italic;
}

.detail-terms{
  position:relative;
  margin-top:10px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:16px 18px;
  font-size:13px;
  line-height:1.7;
  color:#374151;
  box-shadow:0 10px 24px rgba(15,23,42,0.05);
}

.detail-terms::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  bottom:18px;
  width:4px;
  background:#2563eb;
  border-radius:4px;
}

.detail-terms ul{
  padding-left:22px;
}

.detail-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px 12px;
  margin-top:10px;
  box-shadow:0 12px 22px rgba(15,23,42,.05);
}

.detail-box-title{
  font-size:12px;
  font-weight:800;
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
  padding-bottom:8px;
  border-bottom:1px solid #eef2f7;
}

.detail-box-body{
  font-size:13px;
  line-height:1.65;
  color:#111827;
}

.detail-box-body p{margin:0 0 10px;}
.detail-box-body ul{margin:8px 0 0;padding-left:20px;}
.detail-box-body li{margin:0 0 7px;color:#374151;}
.detail-box-body a{color:var(--accent);font-weight:600;text-decoration:none;}
.detail-box-body a:hover{text-decoration:underline;}

/* BRAND */
.brand-header-main{
  flex:1;
  min-width:220px;
}

.brand-logo-big{
  width:80px;
  height:80px;
  border-radius:22px;
  overflow:hidden;
  background:linear-gradient(135deg,#2563eb,#6366f1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#eff6ff;
  font-size:34px;
  font-weight:700;
}

.brand-description{
  margin-top:8px;
  font-size:13px;
}

.brand-socials{
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  font-size:11px;
}

.brand-social-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid var(--border);
  background:#f9fafb;
  cursor:pointer;
  transition:all .2s ease;
  text-decoration:none;
}

.brand-social-pill:hover{
  background:#eef2ff;
  transform:translateY(-1px);
}

.brand-social-pill img{
  width:22px;
  height:22px;
  display:block;
}

.tabs-row{
  display:flex;
  gap:6px;
  margin-top:12px;
  font-size:12px;
}

.tab-btn{
  padding:6px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#f9fafb;
  cursor:pointer;
  color:var(--text-soft);
}

.tab-btn.active{
  background:var(--accent);
  color:#eff6ff;
  border-color:var(--accent);
}

.floating-btn{
  position:fixed;
  right:16px;
  bottom:18px;
  z-index:50;
  padding:9px 16px;
  border-radius:999px;
  background:#2563eb;
  color:#f9fafb;
  font-size:13px;
  font-weight:500;
  text-decoration:none;
  box-shadow:0 12px 24px rgba(15,23,42,.35);
}

.floating-btn:hover{
  filter:brightness(.96);
}

/* HOME CATEGORIES */
.home-categories-wrapper{
  display:flex;
  align-items:center;
  gap:8px;
}

.home-categories-grid{
  flex:1;
  display:flex;
  flex-wrap:nowrap;
  gap:10px;
  overflow-x:auto;
  overflow-y:hidden;
  padding-bottom:6px;
  width:100%;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;
  touch-action:pan-x;
  cursor:grab;
}

.home-categories-grid:active{
  cursor:grabbing;
}

.home-categories-grid::-webkit-scrollbar{
  display:none;
}

.home-category-card{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:8px;
  min-width:120px;
  min-height:48px;
  padding:8px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  font-size:11.5px;
  font-weight:600;
  color:var(--text);
  cursor:pointer;
  transition:all .15s ease;
  box-shadow:0 4px 10px rgba(15,23,42,.03);
}

.home-category-card:hover{
  background:#f1f5f9;
  border-color:#dbeafe;
  color:#1d4ed8;
}

.home-category-icon{
  width:24px;
  height:24px;
  min-width:24px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eff6ff;
  color:#2563eb;
  font-size:12px;
  align-self:center;
}

.home-category-text{
  line-height:1.15;
  white-space:normal;
  display:flex;
  flex-direction:column;
}

.home-category-text .line2{
  font-weight:600;
}

.cat-scroll-btn{
  width:36px;
  height:36px;
  min-width:36px;
  border-radius:50%;
  border:none;
  background:#ffffff;
  box-shadow:0 4px 12px rgba(0,0,0,0.12);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:600;
  color:#334155;
  transition:all .15s ease;
  flex:0 0 auto;
}

.cat-scroll-btn:hover{
  background:#f1f5f9;
}

/* SIDEBAR */
.sidebar-overlay{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,.42);
  backdrop-filter:blur(2px);
  z-index:9998;
}

.sidebar-menu{
  position:fixed;
  top:0;
  right:0;
  width:min(360px,88vw);
  height:100vh;
  background:#ffffff;
  box-shadow:-18px 0 40px rgba(15,23,42,.18);
  z-index:9999;
  padding:18px 16px 20px;
  display:flex;
  flex-direction:column;
  gap:18px;
  transform:translateX(0);
}

.sidebar-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding-bottom:14px;
  border-bottom:1px solid #eef2f7;
}

.sidebar-brand-title{
  font-size:18px;
  font-weight:800;
  letter-spacing:.05em;
  color:#111827;
}

.sidebar-brand-sub{
  margin-top:4px;
  font-size:11px;
  color:#6b7280;
}

.sidebar-close-btn{
  width:38px;
  height:38px;
  min-width:38px;
  border:none;
  border-radius:12px;
  background:#f8fafc;
  color:#111827;
  font-size:18px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .18s ease;
}

.sidebar-close-btn:hover{
  background:#eef2ff;
}

.sidebar-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.sidebar-link{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#ffffff;
  color:#111827;
  font-size:14px;
  font-weight:600;
  transition:all .18s ease;
}

.sidebar-link:hover{
  background:#f8fbff;
  border-color:#dbeafe;
  color:#1d4ed8;
  transform:translateX(2px);
}

/* MAP BUTTON */
.map-button{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 14px;
  border-radius:999px;
  background:#2563eb;
  color:#fff;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  margin-top:8px;
  transition:all .2s ease;
}

.map-button:hover{
  background:#1d4ed8;
}


@media (max-width: 1200px){
  .filters-bar{
    flex-wrap:wrap;
    align-items:stretch;
  }

  .status-chips{
    width:100%;
    order:1;
    overflow-x:auto;
    overflow-y:hidden;
    padding-bottom:4px;
    scrollbar-width:none;
  }

  .status-chips::-webkit-scrollbar{
    display:none;
  }

  .filters-row{
    order:2;
    width:100%;
    grid-template-columns:minmax(220px,1fr) auto 190px;
  }

  .filter-sort{
    width:190px;
    min-width:190px;
  }
}

@media (max-width: 900px){
  .business-promo-card{
    grid-template-columns:1fr;
  }

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

  .filters-row{
    grid-template-columns:minmax(200px,1fr) auto 170px;
    gap:8px;
  }

  .filter-sort{
    width:170px;
    min-width:170px;
  }

  .chip{
    padding:0 16px;
    font-size:12px;
  }
}

/* TABLET */
@media (max-width: 960px){
  .filters-bar{
    flex-wrap:wrap;
    align-items:stretch;
  }

  .status-chips{
    width:100%;
    order:1;
    overflow-x:auto;
    overflow-y:hidden;
    padding-bottom:4px;
    scrollbar-width:none;
  }

  .status-chips::-webkit-scrollbar{
    display:none;
  }

  .filters-row{
    order:2;
    width:100%;
    grid-template-columns:minmax(220px,1fr) auto 190px;
    gap:8px;
  }

  .filter-sort{
    width:190px;
    min-width:190px;
  }

  .hero-card{
    min-height:280px;
    height:280px;
  }

  .hero-left{
    padding:18px 18px 18px;
  }

  .hero-title{
    max-width:440px;
    font-size:26px;
  }

  .hero-brand{
    font-size:13px;
  }

  .hero-dates{
    font-size:11px;
  }

  .home-categories-grid{
    gap:8px;
  }

}

@media(min-width:641px){
  .mobile-app-download-bar{
    display:none!important;
  }
}

/* MOBILE */
@media(max-width:640px){
  header.page-header{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }

  .logo-area{
    gap:9px;
  }

  .site-logo{
    height:48px;
  }

  .logo-text-title{
    font-size:17px;
  }

  .logo-text-sub{
    font-size:10.5px;
  }

  .topbar-right{
    gap:6px;
  }

  .topbar-publish-btn{
    min-width:82px;
    min-height:46px;
    padding:5px 7px;
    font-size:10px;
    gap:6px;
  }

  .topbar-publish-icon{
    width:29px;
    height:29px;
    font-size:26px;
    padding-bottom:2px;
  }

  .mobile-app-download-bar{
    left:10px;
    right:10px;
    bottom:10px;
    align-items:center;
    gap:8px;
    min-height:58px;
    padding:10px;
  }

  .mobile-app-download-text{
    font-size:11.5px;
    line-height:1.3;
  }

  .mobile-app-download-cta{
    min-height:34px;
    padding:0 10px;
    font-size:11px;
  }

  .business-promo-card{
    padding:16px;
    border-radius:20px;
    gap:16px;
  }

  .business-promo-content h2{
    font-size:20px;
    line-height:1.18;
  }

  .business-promo-content p{
    font-size:13px;
  }

  .business-promo-cta{
    width:100%;
    min-height:42px;
    padding:0 14px;
  }

  .business-feature-grid{
    grid-template-columns:1fr;
    gap:8px;
  }

  .business-feature-card{
    min-height:58px;
    flex-direction:row;
    align-items:center;
    justify-content:flex-start;
  }

  .business-benefit-list{
    grid-template-columns:1fr;
    padding:12px;
  }

  .filters-bar{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .status-chips{
    width:100%;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    padding-bottom:4px;
  }

  .filters-row{
    display:flex;
    flex-direction:column;
    gap:8px;
    align-items:stretch;
    width:100%;
  }

  .campaign-grid{
    grid-template-columns:1fr;
  }

  .detail-video-wrap iframe,
  .detail-map-wrap iframe{
    height:210px;
  }

  .hero-card{
    min-height:220px;
    height:220px;
    border-radius:22px;
  }

  .hero-gradient-overlay{
    background:
      linear-gradient(180deg, rgba(15,23,42,.08) 0%, rgba(15,23,42,.18) 34%, rgba(15,23,42,.82) 100%);
  }

  .hero-left{
    padding:14px;
    gap:8px;
  }

  .hero-eyebrow{
    font-size:10px;
    padding:4px 8px;
  }

  .hero-eyebrow span.badge-cat{
    font-size:9px;
  }

  .hero-title{
    max-width:92%;
    font-size:15px;
    line-height:1.22;
  }

  .hero-brand{
    max-width:88%;
    font-size:11px;
    margin-bottom:0;
  }

  .hero-dates{
    font-size:10.5px;
    margin-bottom:2px;
  }

  .hero-bottom-row{
    gap:8px;
  }

  .hero-btn{
    padding:6px 12px;
    font-size:11px;
  }

  .hero-views{
    font-size:10.5px;
  }

  .hero-dots{
    right:10px;
    bottom:10px;
  }

  .home-category-card{
    min-width:112px;
    min-height:46px;
    padding:7px 10px;
    font-size:11px;
  }

  .home-category-icon{
    width:24px;
    height:24px;
    min-width:24px;
    font-size:12px;
  }

  .cat-scroll-btn{
    width:32px;
    height:32px;
    min-width:32px;
    font-size:16px;
  }

  .filter-group{
    width:100%;
    min-height:48px;
    height:48px;
    padding:0 12px;
    border-radius:14px;
  }

  .filter-search,
  .filter-sort{
    min-width:100%;
    width:100%;
  }

  .filter-group input,
  .filter-group select{
    width:100%;
    min-height:46px;
    font-size:13px;
  }

  .map-toggle-label{
    width:100%;
    min-height:48px;
    height:48px;
    justify-content:flex-start;
    padding:0 14px;
    gap:7px;
    font-size:12px;
    border-radius:14px;
  }

  .menu-toggle-btn{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:11px;
    font-size:19px;
  }

  .sidebar-menu{
    width:min(340px,90vw);
    padding:16px 14px 18px;
  }

  .sidebar-link{
    min-height:46px;
    padding:11px 12px;
    font-size:13px;
  }

  .status-chips{
    gap:8px;
  }

  .chip{
    height:40px;
    padding:0 14px;
    font-size:12px;
  }
}

.filter-search{
  flex:1;
}

.filter-sort{
  order:2;
}

.map-toggle-label{
  order:3;
  margin-left:auto;
}

/* SIRALA + HARİTALI YANYANA */
@media (max-width: 768px){

  .filter-sort{
    grid-column:1;
    width:100%;
  }

  .map-toggle-label{
    grid-column:2;
    width:100%;
    margin-left:0;
    justify-content:center;
  }
 
}

@media (max-width: 768px){

  /* CHIPLER ÜSTTE TEK SATIR */
  .status-chips{
    width:100%;
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    margin-bottom:8px;
  }

  /* ARAMA ALTI SATIRA */
  .filter-search{
    width:100%;
    grid-column:1 / -1;
    margin-top:6px;
  }

}

@media (max-width: 768px){

  .filters-bar{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .status-chips{
    width:100%;
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    gap:8px;
    padding-bottom:4px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .status-chips::-webkit-scrollbar{
    display:none;
  }

  .chip{
    flex:0 0 auto;
    white-space:nowrap;
  }

  .filter-search{
    width:100%;
    margin-top:0;
  }

  .filters-row{
    display:grid !important;
    grid-template-columns:1fr 1fr;
    gap:8px;
    width:100%;
  }

  .filter-search{
    grid-column:1 / -1;
  }

  .filter-sort{
    width:100%;
    min-width:0;
  }

  .map-toggle-label{
    width:100%;
    min-width:0;
    margin-left:0;
    justify-content:center;
  }
}

/* FOOTER */
.site-footer{
  margin-top:40px;
  background:#111827;
  color:#e5e7eb;
  border-radius:18px;
  padding:28px 20px 16px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.footer-col{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:13px;
}

.footer-logo{
  font-size:18px;
  font-weight:700;
  color:#ffffff;
}

.footer-desc{
  font-size:12px;
  color:#9ca3af;
  line-height:1.5;
}

.footer-app-link{
  width:max-content;
  max-width:100%;
  margin-top:4px;
  display:inline-flex;
  color:#93c5fd;
  font-size:12px;
  font-weight:700;
  line-height:1.4;
}

.footer-title{
  font-size:13px;
  font-weight:600;
  color:#ffffff;
  margin-bottom:4px;
}

.footer-col a{
  color:#9ca3af;
  text-decoration:none;
  transition:all .2s ease;
}

.footer-col a:hover{
  color:#ffffff;
  transform:translateX(2px);
}

.footer-bottom{
  margin-top:18px;
  padding-top:12px;
  border-top:1px solid #1f2937;
  font-size:11px;
  text-align:center;
  color:#6b7280;
}

/* MOBİL */
@media(max-width:768px){
  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:16px;
  }

}

@media(max-width:480px){
  .footer-container{
    grid-template-columns:1fr;
  }
}

.campaign-image{
  width:100%;
  height:400px;          /* SABİT yükseklik */
  object-fit:contain;    /* resmi kesmeden sığdır */
  background:#000;       /* BOŞLUKLARI SİYAH YAP */
  display:block;
}

.static-page-hero-image{
  width: 100%;
  margin: 0 0 22px 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.static-page-hero-image img{
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

@media (max-width: 768px){
  .static-page-hero-image{
    margin-bottom: 18px;
    border-radius: 14px;
    padding: 8px;
  }

  .static-page-hero-image img{
    max-height: 260px;
  }
}
