/* =============================================
   DELETEAJANS — Global Styles (v4 · Modern B&W)
   ============================================= */

:root {
  /* B&W Color System */
  --primary: #0A0A0A;
  --primary-light: #F4F4F5;
  --primary-dark: #18181B;
  --primary-hover: #27272A;
  --accent: #0A0A0A;
  --coral: #EF4444;
  --coral-light: #FEF2F2;

  /* Surfaces */
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F8F8F9;
  --border: #E4E4E7;
  --border-strong: #0A0A0A;

  /* Text */
  --text-1: #09090B;
  --text-2: #52525B;
  --text-3: #A1A1AA;

  /* Status */
  --success: #10B981;
  --warning: #F59E0B;

  /* Spacing & Shape */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows — subtle, monochrome */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.02);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.03);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 48px rgba(0,0,0,.10);

  /* Misc */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --nav-h: 68px;
  --container: 1200px;
  --transition: 0.2s cubic-bezier(.4,0,.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { color: var(--primary); text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; outline: none; }
ul, ol { list-style: none; }

/* SVG Icon Base */
.icon-svg {
  display: inline-block;
  width: 20px;
  height: 20px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 22px; height: 22px; }
.icon-lg { width: 28px; height: 28px; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  line-height: 1.2; letter-spacing: -0.025em;
  color: var(--text-1); font-weight: 700;
  overflow-wrap: break-word; word-break: break-word;
}
h1 { font-size: clamp(1.75rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.25rem); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); font-weight: 700; }
h4 { font-size: 0.98rem; font-weight: 600; }
p { color: var(--text-2); }
.lead { font-size: 1.08rem; line-height: 1.75; }

/* --- Layout --- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
section { padding-block: 84px; }
@media (max-width: 768px) { section { padding-block: 56px; } }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-md);
  font-size: 0.92rem; font-weight: 600;
  transition: all var(--transition); white-space: nowrap;
  letter-spacing: -0.01em; cursor: pointer;
}

/* Primary: solid black */
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover {
  background: var(--primary-dark); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

/* Ghost: black border */
.btn-ghost {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--primary-light); border-color: var(--primary); color: var(--primary);
  transform: translateY(-1px);
}

/* Surface: subtle background */
.btn-surface {
  background: var(--surface-2); color: var(--text-1);
  border: 1px solid var(--border);
}
.btn-surface:hover { background: var(--border); transform: translateY(-1px); }

/* White: for dark backgrounds */
.btn-white { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: #f4f4f5; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); color: var(--primary); }
.btn-outline-white {
  background: transparent; border: 1.5px solid rgba(255,255,255,.4); color: #fff; font-weight: 600;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; transform: translateY(-1px); }

.btn-sm { padding: 6px 14px; font-size: 0.82rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 13px 26px; font-size: 0.98rem; }
.btn-xl { padding: 15px 32px; font-size: 1.02rem; border-radius: var(--radius-lg); }

/* --- Tags --- */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.01em;
}
.tag-primary { background: var(--primary-light); color: var(--primary); border: 1px solid var(--border); }
.tag-coral { background: var(--coral-light); color: var(--coral); }
.tag-gray { background: var(--surface-2); color: var(--text-2); border: 1px solid var(--border); }
.tag-success { background: #F0FDF4; color: #15803D; border: 1px solid #DCFCE7; }
.tag-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FEF3C7; }
.tag-black { background: var(--primary); color: #fff; }

/* --- Section Labels --- */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block; width: 14px; height: 2px;
  background: var(--text-1); border-radius: 2px;
}
.section-title { margin-bottom: 12px; }
.section-sub { color: var(--text-2); max-width: 520px; font-size: 0.98rem; }

/* --- Cards --- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px; transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateY(-2px); }

/* =============================================
   NAVIGATION — Mega Menu
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 1000; background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,.03);
}

.nav-inner {
  max-width: var(--container); margin-inline: auto; padding-inline: 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

/* Logo Brand */
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  color: var(--text-1); text-decoration: none;
  user-select: none; flex-shrink: 0;
}
.nav-logo-icon {
  width: 32px; height: 32px; background: var(--primary);
  color: #fff; border-radius: 8px; display: grid; place-items: center;
  flex-shrink: 0; transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-icon { transform: scale(1.05); }
.nav-logo-icon svg { stroke: #fff; width: 17px; height: 17px; }

.nav-logo-text {
  font-size: 1.15rem; font-weight: 800; letter-spacing: -0.04em; color: var(--text-1);
}
.nav-logo-dot { color: var(--text-3); margin-inline: 1px; }
.nav-logo-sub { font-weight: 600; color: var(--text-2); font-size: 1.12rem; margin-left: 2px; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2px;
}
.nav-item {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-item.has-mega {
  position: static;
}

.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--text-2);
  transition: all var(--transition); cursor: pointer; user-select: none;
  background: none; border: none; font-family: var(--font); white-space: nowrap;
}
.nav-link:hover,
.nav-link.active,
.nav-item:hover > .nav-link,
.nav-item.open > .nav-link {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-link .chevron {
  width: 14px; height: 14px; stroke: var(--text-3); stroke-width: 2.2;
  transition: transform var(--transition);
}
.nav-item:hover > .nav-link .chevron,
.nav-item.open > .nav-link .chevron { transform: rotate(180deg); stroke: var(--primary); }

/* --- Mega Menu Panel --- */
.mega-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(0,0,0,.06);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 999;
}
/* Invisible hover bridge to eliminate any gap between navbar and mega menu */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  display: block;
}
.nav-item:hover .mega-menu,
.nav-item.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-inner {
  max-width: var(--container); margin-inline: auto;
  padding: 24px; display: flex; gap: 16px;
}
.mega-col { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mega-col-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text-3); padding: 0 12px; margin-bottom: 6px;
}
.mega-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 14px; border-radius: var(--radius-md);
  transition: all var(--transition); cursor: pointer; color: inherit;
}
.mega-item:hover { background: var(--primary-light); }
.mega-item-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--border);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  color: var(--text-1);
}
.mega-item:hover .mega-item-icon {
  transform: translateY(-1px);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.mega-item-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-1); margin-bottom: 2px; }
.mega-item-text p { font-size: 0.78rem; color: var(--text-3); line-height: 1.4; }
.mega-item-price {
  font-size: 0.76rem; font-weight: 600; color: var(--text-2);
  margin-top: 4px; display: flex; align-items: center; gap: 5px;
}
.mega-item-price::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--text-1); }

.mega-divider { width: 1px; background: var(--border); align-self: stretch; }

.mega-featured {
  width: 250px; flex-shrink: 0;
  background: var(--primary); border-radius: var(--radius-lg);
  padding: 22px; display: flex; flex-direction: column; justify-content: space-between;
  color: white;
}
.mega-featured-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.12); display: grid; place-items: center;
  color: white; margin-bottom: 12px;
}
.mega-featured h4 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 6px; }
.mega-featured p { font-size: 0.8rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.mega-featured .btn-white { margin-top: 14px; align-self: flex-start; }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  background: var(--surface-2); border-radius: var(--radius-sm);
  cursor: pointer; border: 1px solid var(--border); transition: all var(--transition);
}
.hamburger:hover { background: var(--primary); border-color: var(--primary); }
.hamburger:hover span { background: white; }
.hamburger span { width: 16px; height: 1.5px; background: var(--text-1); border-radius: 2px; transition: all var(--transition); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 14px 20px 24px; z-index: 999; box-shadow: var(--shadow-lg);
  flex-direction: column; gap: 2px; max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  transform: translateY(-4px); opacity: 0; transition: all var(--transition);
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-section-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-3); padding: 12px 10px 4px;
}
.mobile-menu .nav-link { padding: 9px 10px; font-size: 0.9rem; border-radius: var(--radius-md); display: flex; align-items: center; gap: 10px; }
.mobile-menu .nav-link .icon-svg { stroke: var(--text-2); }
.mobile-menu .btn { margin-top: 14px; width: 100%; justify-content: center; }
.mobile-menu hr { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links, .nav-cta { display: none; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--primary); color: rgba(255,255,255,.65); padding-top: 60px; padding-bottom: 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo-text { color: #fff; }
.footer-brand .nav-logo-icon { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); }
.footer-brand .nav-logo-sub { color: rgba(255,255,255,.6); }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,.45); max-width: 280px; }

.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-social-link {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center; color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.footer-social-link:hover { background: rgba(255,255,255,.15); color: white; transform: translateY(-2px); }
.footer-social-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.footer-social-link svg.fill-current { fill: currentColor; stroke: none; }

.footer-col h4 {
  color: rgba(255,255,255,.45); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 24px; font-size: 0.8rem; color: rgba(255,255,255,.3);
}
.footer-legal-links { display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 12px; }
.footer-legal-links a, .footer-legal-links button { color: rgba(255,255,255,.55); font-size: 0.8rem; background: none; border: 0; padding: 4px 0; font-family: inherit; cursor: pointer; transition: color var(--transition); }
.footer-legal-links a:hover, .footer-legal-links button:hover { color: #fff; }
.footer-legal-links span { color: rgba(255,255,255,.2); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } .footer-brand { grid-column: 1/-1; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding-top: calc(var(--nav-h) + 60px); padding-bottom: 56px;
  background: var(--surface); border-bottom: 1px solid var(--border); text-align: center;
}
.page-hero .tag { margin-bottom: 14px; }
.breadcrumb-trail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 14px;
}
.breadcrumb-trail a,
.breadcrumb-trail span {
  white-space: nowrap;
}
.breadcrumb-trail a {
  color: var(--text-2);
}
.breadcrumb-trail a:hover {
  color: var(--primary);
}
.breadcrumb-trail .breadcrumb-current {
  color: var(--primary);
  font-weight: 600;
}
.page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 5.5vw, 2.75rem);
  overflow-wrap: break-word;
  word-break: break-word;
}
.page-hero p { max-width: 480px; margin-inline: auto; font-size: 0.98rem; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }

/* =============================================
   UTILITY & FORMS
   ============================================= */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-3); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.84rem; font-weight: 600; color: var(--text-1); }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-family: var(--font); font-size: 0.92rem;
  color: var(--text-1); background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,0,0,.05);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* Accordion */
.accordion-list { display: flex; flex-direction: column; }
.accordion-item { border-bottom: 1px solid var(--border); transition: border-color var(--transition); }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; background: none; border: none; font-family: var(--font); font-size: 0.98rem;
  font-weight: 600; color: var(--text-1); text-align: left; cursor: pointer; transition: color var(--transition);
}
.accordion-btn:hover { color: var(--primary); }
.accordion-btn[aria-expanded="true"] { color: var(--primary); }
.accordion-icon {
  width: 20px; height: 20px; color: var(--text-3); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color var(--transition);
  background: transparent !important; border: none !important; border-radius: 0 !important;
}
.accordion-icon svg {
  width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.accordion-btn:hover .accordion-icon { color: var(--text-1); }
.accordion-btn[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
  color: var(--primary);
}
.accordion-content { overflow: hidden; max-height: 0; transition: max-height 0.35s ease, padding 0.35s ease; }
.accordion-content.open { max-height: 400px; padding-bottom: 18px; }
.accordion-content p { color: var(--text-2); line-height: 1.7; font-size: 0.92rem; margin: 0; }

/* Status dots */
.status-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.status-dot.live { background: var(--success); animation: pulse-dot 2s ease-in-out infinite; }
.status-dot.wip { background: var(--warning); animation: pulse-dot 2s ease-in-out infinite; }
.status-dot.coming { background: var(--coral); }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.85); } }

/* =============================================
   RIGHT-SIDE LIVE CONTACT WIDGET (100% FREE)
   ============================================= */
.rc-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 995;
  font-family: inherit;
}

/* Floating Launcher Button (Capsule / Pill) */
.rc-launcher {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #09090B;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 18px 10px 14px;
  border-radius: 9999px;
  box-shadow: 0 10px 28px -4px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  position: relative;
  line-height: 1;
  text-decoration: none;
}
.rc-launcher:hover {
  background: #18181B;
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -4px rgba(0, 0, 0, 0.55), 0 4px 12px rgba(0, 0, 0, 0.25);
}
.rc-launcher:active {
  transform: translateY(0);
}

.rc-icon-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.rc-icon-chat,
.rc-icon-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.rc-icon-chat svg {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
}
.rc-icon-close svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
}

.rc-pulse-wrap {
  position: absolute;
  top: -3px;
  right: 0px;
  width: 8px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.rc-pulse-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.85);
  /* Sayfa acilinca birkac kez parlar ve durur; surekli dikkat cekmez */
  animation: rcDotGlow 2.4s ease-in-out 3;
}
.rc-pulse-wave {
  display: none;
}
@keyframes rcDotGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

.rc-launcher[aria-expanded="true"] .rc-pulse-wrap {
  display: none;
}

.rc-launcher-label {
  font-size: 0.90rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  white-space: nowrap;
}

.rc-unread-badge {
  background: #EF4444;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 9999px;
  line-height: 1;
}

/* Floating Panel Card */
.rc-panel {
  position: fixed;
  right: 24px;
  bottom: 84px;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 54px -12px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 996;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.rc-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Panel Header */
.rc-panel-header {
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.rc-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rc-header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  flex-shrink: 0;
}
.rc-header-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}
.rc-header-sub {
  font-size: 0.72rem;
  color: #A1A1AA;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.rc-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
}
.rc-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.rc-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Panel Body */
.rc-panel-body {
  padding: 14px 16px;
  max-height: 560px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.rc-section-label {
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
  margin-bottom: 6px;
}

/* 1-Click Channels */
.rc-channels-wrap {
  margin-bottom: 12px;
}
.rc-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1px solid var(--border);
  text-decoration: none;
  margin-bottom: 6px;
  transition: all 0.18s ease;
  background: #FAFAFA;
}
.rc-channel:last-child {
  margin-bottom: 0;
}
.rc-ch-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rc-ch-details {
  flex: 1;
  min-width: 0;
}
.rc-ch-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.2;
}
.rc-ch-meta {
  display: block;
  font-size: 0.70rem;
  color: var(--text-2);
  margin-top: 1px;
}
.rc-ch-arrow {
  color: var(--text-3);
  transition: transform 0.15s, color 0.15s;
}
.rc-channel:hover .rc-ch-arrow {
  transform: translateX(2px);
  color: var(--text-1);
}

/* WhatsApp Channel Accent */
.rc-ch-wa {
  background: #F0FDF4;
  border-color: #DCFCE7;
}
.rc-ch-wa .rc-ch-icon {
  background: #22C55E;
  color: #FFFFFF;
}
.rc-ch-wa:hover {
  background: #DCFCE7;
  border-color: #86EFAC;
}

/* Call Channel Accent */
.rc-ch-call {
  background: #F8FAFC;
  border-color: #E2E8F0;
}
.rc-ch-call .rc-ch-icon {
  background: #0F172A;
  color: #FFFFFF;
}
.rc-ch-call:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

/* Mail Channel Accent */
.rc-ch-mail {
  background: #FDF4FF;
  border-color: #FAE8FF;
}
.rc-ch-mail .rc-ch-icon {
  background: #7E22CE;
  color: #FFFFFF;
}
.rc-ch-mail:hover {
  background: #FAE8FF;
  border-color: #F0ABFC;
}

/* Chat Greeting Bubble */
/* Live Chat Unread Badge */
.rc-unread-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #EF4444;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0A0A0A;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.5);
  line-height: 1;
}

.rc-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.rc-new-chat-btn {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}
.rc-new-chat-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
}
.rc-header-wa-btn {
  background: rgba(34, 197, 94, 0.2);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.4);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.15s ease;
}
.rc-header-wa-btn:hover {
  background: #22C55E;
  color: #FFFFFF;
  transform: scale(1.05);
}

/* Modern Visitor Contact Bar */
.rc-contact-bar {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 9px 14px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  position: relative;
  z-index: 2;
}

.rc-contact-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.rc-contact-user {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  flex: 1;
}

.rc-contact-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.12);
  user-select: none;
}

.rc-contact-avatar svg {
  stroke: #FFFFFF;
}

.rc-avatar-initial {
  display: block;
  line-height: 1;
  text-transform: uppercase;
}

.rc-contact-meta {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rc-contact-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  line-height: 1.2;
}

.rc-contact-name {
  font-size: 0.80rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 155px;
}

.rc-contact-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: #2563EB;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  padding: 1px 5px;
  border-radius: 999px;
  line-height: 1.1;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.rc-contact-email {
  font-size: 0.70rem;
  color: #64748B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

/* Modern Pill Action Button */
.rc-contact-edit-btn,
.rc-contact-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  color: #1E293B;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  outline: none;
}

.rc-contact-edit-btn svg,
.rc-contact-toggle-btn svg {
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.rc-contact-edit-btn:hover,
.rc-contact-toggle-btn:hover {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.18);
}

.rc-contact-edit-btn:hover svg,
.rc-contact-toggle-btn:hover svg {
  transform: scale(1.1);
}

.rc-contact-edit-btn:active,
.rc-contact-toggle-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.rc-contact-edit-btn:focus-visible,
.rc-contact-toggle-btn:focus-visible {
  border-color: #2563EB;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* Responsive Breakpoints */
@media (max-width: 380px) {
  .rc-contact-bar {
    padding: 7px 10px;
  }
  .rc-contact-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }
  .rc-contact-name {
    max-width: 105px;
    font-size: 0.76rem;
  }
  .rc-contact-email {
    font-size: 0.68rem;
  }
  .rc-contact-edit-btn,
  .rc-contact-toggle-btn {
    padding: 4px 8px;
    font-size: 0.69rem;
    gap: 4px;
  }
}

@media (max-width: 330px) {
  .rc-contact-name {
    max-width: 80px;
  }
  .rc-contact-edit-lbl {
    display: none;
  }
  .rc-contact-edit-btn,
  .rc-contact-toggle-btn {
    padding: 6px;
    border-radius: 50%;
  }
}

/* Pre-Chat Onboarding Card (Modern Luxury Form) */
.rc-prechat-card {
  padding: 22px 22px 24px 22px;
  background: #FFFFFF;
  border-radius: 16px;
  animation: rcFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.rc-prechat-header {
  text-align: center;
  margin-bottom: 18px;
}
.rc-prechat-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #18181B 0%, #27272A 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  box-shadow: 0 8px 18px -4px rgba(24, 24, 27, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rc-prechat-icon-badge svg {
  stroke: #FFFFFF;
}
.rc-prechat-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #09090B;
  letter-spacing: -0.02em;
}
.rc-prechat-desc {
  font-size: 0.78rem;
  color: #64748B;
  margin-top: 4px;
  line-height: 1.45;
}
.rc-prechat-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.rc-field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rc-field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  font-weight: 600;
  color: #334155;
  letter-spacing: -0.01em;
}
.rc-field-label .rc-req {
  color: #EF4444;
  font-size: 0.72rem;
  margin-left: 2px;
}
.rc-field-label .rc-opt {
  color: #94A3B8;
  font-weight: 400;
  font-size: 0.68rem;
}
.rc-input-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.rc-input-icon {
  position: absolute;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 2;
}
.rc-input-box:focus-within .rc-input-icon {
  color: #09090B;
}
.rc-field-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px 10px 38px;
  font-size: 0.84rem;
  font-weight: 500;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  background: #F8FAFC;
  color: #09090B;
  font-family: inherit;
  outline: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.rc-field-input::placeholder {
  color: #94A3B8;
  font-weight: 400;
  font-size: 0.80rem;
}
.rc-field-input:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
}
.rc-field-input:focus {
  border-color: #09090B;
  background: #FFFFFF;
  box-shadow: 0 0 0 3.5px rgba(9, 9, 11, 0.08);
}
.rc-prechat-error {
  background: #FEF2F2;
  border: 1.5px solid #FECACA;
  color: #991B1B;
  font-size: 0.75rem;
  padding: 8px 12px;
  border-radius: 9px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: rcFadeIn 0.2s ease;
}
.rc-prechat-error.is-security {
  background: #FFFBEB;
  border-color: #FDE68A;
  color: #92400E;
}
.rc-prechat-btn-wrap {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.rc-prechat-submit-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #18181B 0%, #09090B 100%);
  color: #FFFFFF;
  border: none;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(9, 9, 11, 0.16);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.rc-prechat-submit-btn svg {
  transition: transform 0.2s ease;
}
.rc-prechat-submit-btn:hover {
  background: linear-gradient(135deg, #27272A 0%, #18181B 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(9, 9, 11, 0.24);
}
.rc-prechat-submit-btn:hover svg {
  transform: translateX(3px);
}
.rc-prechat-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(9, 9, 11, 0.14);
}
.rc-prechat-submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.rc-prechat-cancel-btn {
  background: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.rc-prechat-cancel-btn:hover {
  background: #E2E8F0;
  color: #09090B;
}
.rc-prechat-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.70rem;
  color: #94A3B8;
  margin-top: 4px;
  font-weight: 500;
}
.rc-prechat-trust svg {
  color: #10B981;
}
@keyframes rcFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.rc-chat-view {
  display: flex;
  flex-direction: column;
}

/* Live Chat Body & Message Stream */
.rc-chat-body {
  display: flex;
  flex-direction: column;
  height: 360px;
  background: #FAFAFA;
}
.rc-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

.rc-msg-row {
  display: flex;
  gap: 8px;
  max-width: 86%;
}
.rc-msg-row-agent {
  align-self: flex-start;
}
.rc-msg-row-visitor {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.rc-msg-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #09090B;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.rc-msg-bubble-wrap {
  display: flex;
  flex-direction: column;
}
.rc-msg-row-visitor .rc-msg-bubble-wrap {
  align-items: flex-end;
}

.rc-msg-meta {
  display: flex;
  gap: 6px;
  font-size: 0.66rem;
  color: #71717A;
  margin-bottom: 2px;
  padding: 0 4px;
}
.rc-msg-author {
  font-weight: 600;
}
.rc-msg-time {
  color: #A1A1AA;
}

.rc-msg-bubble {
  padding: 9px 13px;
  font-size: 0.82rem;
  line-height: 1.45;
  word-break: break-word;
  white-space: pre-wrap;
}

.rc-bubble-agent {
  background: #FFFFFF;
  color: #18181B;
  border: 1px solid #E4E4E7;
  border-radius: 14px 14px 14px 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.rc-bubble-visitor {
  background: #09090B;
  color: #FFFFFF;
  border: 1px solid #09090B;
  border-radius: 14px 14px 2px 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.rc-msg-system {
  align-self: center;
  font-size: 0.68rem;
  color: #71717A;
  background: #F4F4F5;
  border: 1px solid #E4E4E7;
  padding: 4px 10px;
  border-radius: 20px;
  text-align: center;
  margin: 4px 0;
}

/* Typing Indicator */
.rc-typing-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid #E4E4E7;
  font-size: 0.70rem;
  color: #71717A;
}
.rc-typing-dots {
  display: flex;
  gap: 3px;
}
.rc-typing-dots span {
  width: 5px;
  height: 5px;
  background: #10B981;
  border-radius: 50%;
  animation: rcDotPulse 1.2s infinite ease-in-out;
}
.rc-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.rc-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes rcDotPulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1.1); opacity: 1; }
}

/* Chat Footer & Input */
.rc-chat-footer {
  padding: 10px 12px;
  background: #FFFFFF;
  border-top: 1px solid #E4E4E7;
}
.rc-chat-form {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.rc-chat-input {
  flex: 1;
  border: 1px solid #D4D4D8;
  border-radius: 18px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-family: inherit;
  resize: none;
  max-height: 80px;
  line-height: 1.35;
  background: #FAFAFA;
  color: #18181B;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.rc-chat-input:focus {
  border-color: #09090B;
  background: #FFFFFF;
}
.rc-chat-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #09090B;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.1s, background 0.15s;
}
.rc-chat-send-btn:hover {
  background: #27272A;
  transform: scale(1.04);
}
.rc-chat-send-btn:active {
  transform: scale(0.96);
}
.rc-chat-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.rc-footer-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 0.65rem;
  color: #71717A;
  line-height: 1.2;
}
.rc-footer-badge svg {
  color: #10B981;
  flex-shrink: 0;
}

/* Responsive Styles for Mobile */
@media (max-width: 640px) {
  .rc-widget {
    right: 16px;
    bottom: 18px;
  }
  .rc-launcher {
    display: inline-flex;
    align-items: center;
    width: auto;
    height: auto;
    padding: 9px 15px 9px 12px;
    gap: 8px;
    border-radius: 9999px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: #09090B;
  }
  .rc-launcher-label {
    display: inline-block;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    white-space: nowrap;
  }
  .rc-icon-box {
    width: 20px;
    height: 20px;
  }
  .rc-icon-chat svg {
    width: 19px;
    height: 19px;
  }
  .rc-icon-close svg {
    width: 17px;
    height: 17px;
  }
  .rc-pulse-wrap {
    top: -3px;
    right: 0px;
    width: 7px;
    height: 7px;
  }
  .rc-pulse-core {
    width: 7px;
    height: 7px;
  }
  .rc-panel {
    right: 16px;
    bottom: 74px;
    width: calc(100vw - 32px);
  }
}

/* ============================================
   Cerez (Cookie) Banner & KVKK Modal
   ============================================ */
/* Cerez ve KVKK Stilleri */
.da-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 980px;
  margin: 0 auto;
  background: #09090B;
  color: #FAFAFA;
  border: 1px solid #27272A;
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  z-index: 999990;
  animation: daSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes daSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.da-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.da-cookie-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: min(280px, 100%);
}
.da-cookie-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #18181B;
  border: 1px solid #27272A;
  color: #3B82F6;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.da-cookie-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #FFFFFF;
}
.da-cookie-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: #A1A1AA;
  margin: 0;
}
.da-cookie-desc a {
  color: #60A5FA;
  text-decoration: underline;
  cursor: pointer;
}
.da-cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.da-cookie-btn {
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.da-cookie-btn-settings {
  background: #18181B;
  color: #D4D4D8;
  border-color: #3F3F46;
}
.da-cookie-btn-settings:hover { background: #27272A; color: #FFFFFF; }
.da-cookie-btn-reject {
  background: transparent;
  color: #A1A1AA;
  border-color: #27272A;
}
.da-cookie-btn-reject:hover { background: #18181B; color: #FAFAFA; border-color: #3F3F46; }
.da-cookie-btn-accept {
  background: #10B981;
  color: #000000;
  font-weight: 700;
}
.da-cookie-btn-accept:hover { background: #059669; color: #FFFFFF; }

/* Modal Stilleri */
.da-cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 999995;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.da-cookie-modal-card {
  background: #FFFFFF;
  color: #09090B;
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: daModalScale 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.da-kvkk-card {
  max-width: 720px;
}
@keyframes daModalScale {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.da-cookie-modal-head {
  padding: 20px 24px;
  border-bottom: 1px solid #E4E4E7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.da-cookie-modal-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}
.da-cookie-modal-subtitle {
  font-size: 12px;
  color: #71717A;
  margin: 3px 0 0;
}
.da-cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #71717A;
  cursor: pointer;
  padding: 4px;
}
.da-cookie-modal-close:hover { color: #09090B; }
.da-cookie-modal-body {
  padding: 22px 24px;
  overflow-y: auto;
  flex: 1;
}
.da-cookie-group {
  padding: 14px 0;
  border-bottom: 1px solid #F4F4F5;
}
.da-cookie-group:last-child { border-bottom: none; }
.da-cookie-group-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 6px;
}
.da-cookie-badge-always {
  font-size: 10.5px;
  font-weight: 700;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  padding: 2px 8px;
  border-radius: 12px;
}
.da-cookie-group-desc {
  font-size: 12px;
  color: #71717A;
  line-height: 1.5;
  margin: 0;
}

/* Switch Toggle */
.da-cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.da-cookie-switch input { opacity: 0; width: 0; height: 0; }
.da-cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #E4E4E7;
  transition: .2s;
  border-radius: 24px;
}
.da-cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .2s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.da-cookie-switch input:checked + .da-cookie-slider {
  background-color: #10B981;
}
.da-cookie-switch input:checked + .da-cookie-slider:before {
  transform: translateX(18px);
}

.da-cookie-modal-foot {
  padding: 16px 24px;
  border-top: 1px solid #E4E4E7;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.da-kvkk-content {
  font-size: 13px;
  line-height: 1.65;
  color: #3F3F46;
}
.da-kvkk-content h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #09090B;
  margin: 16px 0 6px;
}
.da-kvkk-content p {
  margin: 0 0 10px;
}
.da-kvkk-content ul {
  padding-left: 20px;
  margin: 0 0 12px;
}
.da-kvkk-content li {
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .da-cookie-banner { bottom: 12px; left: 12px; right: 12px; padding: 16px; }
  .da-cookie-actions { width: 100%; justify-content: stretch; }
  .da-cookie-actions button { flex: 1; text-align: center; }
}
