    :root {
      --ncf_accent: #007bdc;
    }

    /* ==== BANNER ==== */
    .ncf_cookie_banner {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 0 16px 16px;
      display: flex; transform: translateY(160%); transition: transform .35s ease; will-change: transform; /* CLS-safe: transform ile gir-cik */
      justify-content: center;
      z-index: 60;
      pointer-events: none;       /* dış boşluk tıklanmasın diye */
    }

    .ncf_cookie_banner.ncf-visible { transform: translateY(0); }

    .ncf_cookie_banner_inner {
      max-width: 1200px;
      width: 100%;
      background: #ffffff;
      border-radius: 14px 14px 0 0;
      box-shadow: 0 -8px 20px rgba(15,23,42,0.12);
      border-top: 1px solid #e2e8f0;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      pointer-events: auto;       /* içerik tıklanabilir */
      font-size: 13px;
      color: #475569;
    }

    .ncf_cookie_banner_text strong {
      color: #0f172a;
    }

    .ncf_cookie_banner_buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-left: auto;
      justify-content: flex-end;
    }
	.ncf_cookie_banner_buttons button { 
	height:unset;
	letter-spacing:unset;
	line-height:unset;
	}
	.ncf_cookie_modal_footer button {
	height:unset;
	letter-spacing:unset;
	line-height:unset;
	}
    .ncf_cookie_btn {
      border-radius: 999px !important;
      padding: 9px 18px !important;
      font-size: 13px !important;
      font-weight: 600 !important;
      cursor: pointer !important;
      border: 1px solid transparent !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      white-space: nowrap !important;
      transition: all 0.15s ease !important;
    }

    .ncf_cookie_btn_secondary {
      background: #ffffff !important;
      border-color: #cbd5f5 !important;
      color: #0f172a !important;
    }

    .ncf_cookie_btn_secondary:hover {
      border-color: var(--ncf_accent) !important;
      background: #eff6ff !important;
    }

    .ncf_cookie_btn_primary {
      background: #ff6a00 !important;
      border-color: #ff6a00 !important;
      color: #ffffff !important;
      box-shadow: 0 6px 10px rgba(248,113,22,0.35) !important;
    }

    .ncf_cookie_btn_primary:hover {
      background: #ea580c !important;
      border-color: #ea580c !important;
      transform: translateY(-1px) !important;
    }

    /* ==== MODAL ==== */
    .ncf_cookie_modal_backdrop {
      position: fixed;
      inset: 0;
      background: rgba(15,23,42,0.65);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 999;
    }

    .ncf_cookie_modal {
      background: #ffffff;
      max-width: 620px;
      width: 100%;
      border-radius: 18px;
      box-shadow: 0 25px 50px -12px rgba(15,23,42,0.35);
      padding: 20px 22px 18px;
      max-height: 80vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      font-size: 13px;
      color: #475569;
    }

    .ncf_cookie_modal_header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .ncf_cookie_modal_title {
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
    }

    .ncf_cookie_modal_close {
      border: none;
      background: #f1f5f9;
      border-radius: 999px;
      width: 30px;
      height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #64748b;
      font-size: 16px;
    }

    .ncf_cookie_modal_close:hover {
      background: #e2e8f0;
    }

    .ncf_cookie_modal_body {
      font-size: 13px;
      color: #475569;
      overflow-y: auto;
      padding-right: 4px;
    }

    .ncf_cookie_category_list {
      margin-top: 14px;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      overflow: hidden;
    }

    .ncf_cookie_category_item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 12px;
      gap: 10px;
      cursor: default;
      background: #ffffff;
      border-bottom: 1px solid #e2e8f0;
    }

    .ncf_cookie_category_item:last-child {
      border-bottom: none;
    }

    .ncf_cookie_category_main {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .ncf_cookie_category_name {
      font-weight: 600;
      color: #0f172a;
      font-size: 13px;
    }

    .ncf_cookie_category_desc {
      font-size: 12px;
      color: #64748b;
    }

    .ncf_cookie_category_toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #64748b;
    }

    .ncf_cookie_toggle_pill {
      width: 40px;
      height: 22px;
      border-radius: 999px;
      background: #e2e8f0;
      position: relative;
      flex-shrink: 0;
    }

    .ncf_cookie_toggle_thumb {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: #ffffff;
      position: absolute;
      top: 2px;
      left: 2px;
      box-shadow: 0 1px 3px rgba(15,23,42,0.35);
    }

    .ncf_cookie_toggle_pill.ncf_on {
      background: #22c55e;
    }

    .ncf_cookie_toggle_pill.ncf_on .ncf_cookie_toggle_thumb {
      left: 20px;
    }

    .ncf_cookie_toggle_pill.ncf_disabled {
      opacity: 0.4;
    }

    .ncf_cookie_details_panel {
      display: none;
      border-top: 1px solid #e2e8f0;
      background: #f8fafc;
    }

    .ncf_cookie_details_panel_inner {
      padding: 10px 12px 12px;
      font-size: 12px;
      color: #475569;
    }

    .ncf_cookie_details_panel_inner table {
      width: 100%;
      border-collapse: collapse;
    }

    .ncf_cookie_details_panel_inner th,
    .ncf_cookie_details_panel_inner td {
      border: 1px solid #e2e8f0;
      padding: 6px 8px;
    }

    .ncf_cookie_details_panel_inner th {
      background: #e5f0ff;
      font-weight: 600;
    }

    .ncf_cookie_modal_footer {
      margin-top: 14px;
      display: flex;
      justify-content: flex-end;
      gap: 8px;
      border-top: 1px solid #e2e8f0;
      padding-top: 10px;
    }

    .ncf_cookie_modal_footer .ncf_cookie_btn {
      border-radius: 8px;
    }

    /* Footer link örneği */
    .ncf_cookie_manage_link {
      font-weight: 600;
      cursor: pointer;
    }
	.ncf_cookie_category_desc p { 
	font-size:12px !important;
	}
	@media screen and (max-width: 767px) {
	.ncf_cookie_banner_buttons button {
	height:30px !important;
	}
	.ncf_cookie_banner_buttons { 
		display:grid !important;
		}
		.ncf_desc { 
	width:100% !important;
	}
	}
	.ncf_desc { 
	width:50%;
	}