:root {
    /* Brand */
    --color-primary: #f6a11e;
    --color-secondary: #111827; /* deep neutral (used for headings/icons) */

    /* Primary variants */
    --color-primary-50: #fff7e6;
    --color-primary-100: #ffe9bf;
    --color-primary-200: #ffd58a;
    --color-primary-300: #ffc155;
    --color-primary-400: #ffb22f;
    --color-primary-500: #f6a11e; /* primary */
    --color-primary-600: #e28f0b;
    --color-primary-700: #c67800;

    /* Secondary variants (neutral) */
    --color-secondary-50: #f9fafb;
    --color-secondary-100: #f3f4f6;
    --color-secondary-200: #e5e7eb;
    --color-secondary-300: #d1d5db;
    --color-secondary-400: #9ca3af;
    --color-secondary-500: #6b7280;
    --color-secondary-600: #4b5563;
    --color-secondary-700: #374151;
    --color-secondary-800: #1f2937;
    --color-secondary-900: #111827;

    /* Text */
    --color-text: #111111;
    --color-text-muted: #6b7280;
    --color-text-subtle: #374151;
    --color-text-inverse: #ffffff;

    /* Background */
    --color-bg: #ffffff;
    --color-bg-soft: #fafafa;
    --color-bg-tint: #fff7e6; /* warm tint */

    /* Borders */
    --color-border: #e5e7eb;
    --color-border-soft: #f1f5f9;

    /* Surfaces */
    --color-surface: #ffffff;
    --color-surface-hover: #f8fafc;

    /* Shadows (color tokens only) */
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-shadow-soft: rgba(0, 0, 0, 0.06);

    /* States */
    --color-focus: rgba(246, 161, 30, 0.35);
    --color-focus-ring: rgba(246, 161, 30, 0.18);

    --bg: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e5e7eb;

    --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadowHover: 0 14px 40px rgba(15, 23, 42, 0.14);
    --radius: 18px;

    /* BRAND */
    --brand: #f6a11e;
    --brandBorder: rgba(246, 161, 30, 0.35);
    --brandShadow: rgba(246, 161, 30, 0.22);

    --badgeBg: #fff4e0;
    --badgeText: #a35a00;

    --gap: 16px; /* keep in sync with JS */
}

/* ================================
   GLOBAL BASE STYLES
   File: css/globals/base.css
=================================== */

html,
body {
    font-family: "Libre Franklin", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Arial, sans-serif;

    color: var(--color-text);
    background: var(--color-bg);
    margin: 0px;
    
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    font: inherit;
}

.section {
    display: Flex;
    justify-content: center;
}

/* ================= HEADER ================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--color-bg, #fff);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.site-header,
.header__inner{
  overflow: visible;
}

.header__inner{
  max-width: 1330px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* logo */
.header__logo img{
  height: 80px;
  width: auto;
  display: block;
}

/* burger */
.header__burger{
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  display:none; /* desktop hidden */
  cursor:pointer;
  padding:8px;
  border-radius:10px;

  /* important */
  flex-direction:column;
  justify-content:center;
  align-items:center;
}
.header__burger span{
  display:block;
  width:22px;        /* IMPORTANT */
  height:2px;
  background:#111;
  margin:4px 0;
  border-radius:99px;
}

/* desktop nav */
.header__nav{
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 18px;
  flex: 1;
  min-width: 0;
}

.header__nav .nav-item{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* links */
.header__link,
.header__nav .nav-link{
  background: transparent;
  border: 0;
  padding: 8px 0;
  cursor: pointer;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
      display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
}

.header__nav .nav-link:hover{
  color: var(--color-primary, #F6A11E);
}

/* dropdown positioning under each menu item */
.header__nav .nav-item .dropdown{
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 2000;
  min-width: 260px;
}

/* "open" state controlled by JS data-open */
.header__nav .nav-item.has-dd .dropdown{
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 10px;
  margin-top: 10px;
}

.dropdown::before{
  content:"";
  position:absolute;
  top:-8px;
  left:34px;
  width:14px;
  height:14px;
  background: var(--color-surface);
  border-left:1px solid var(--color-border-soft);
  border-top:1px solid var(--color-border-soft);
  transform: rotate(45deg);
}

.header__nav .nav-item.has-dd[data-open="true"] .dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* simple dropdown list */
.dd-list{
  display: flex;
  flex-direction: column;
  padding: 4px 0;
  gap: 4px;
}
.dd-item{
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}
.dd-item:hover{
  background: var(--color-surface-hover);
  color: var(--color-primary);
}

/* Courses mega dropdown bits (optional) */
.courses-dd .two-selects{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-direction: column;
  padding: 4px;
}
.courses-dd .select-like{
  flex: 1;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 10px;
  padding: 12px 12px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  user-select: none;
  color: var(--color-text);
}
.courses-dd .select-like:hover{
  border-color: rgba(246,161,30,.55);
  box-shadow: 0 0 0 4px rgba(246,161,30,.12);
}

.select-like.active{
  color: var(--color-primary);
  background: rgba(246,161,30,.08);
  border-color: var(--color-focus);
}

.courses-dd .subpanel{
  display: none;
  background: #fff;
  border-radius: 10px;
  padding: 6px 0;
  position: absolute;
    top: 12px;
    left: calc(100% + 2px);
    width: 260px;
    border: 1px solid var(--color-border-soft);
    box-shadow: 0 12px 30px var(--color-shadow);
}

.subpanel::before{
  content:"";
  position:absolute;
  top:22px;
  left:-7px;
  width:14px;
  height:14px;
  background: var(--color-surface);
  border-left:1px solid var(--color-border-soft);
  border-bottom:1px solid var(--color-border-soft);
  transform: rotate(45deg);
}
.courses-dd[data-panel="type"] .panel-type{ display: block; }
.courses-dd[data-panel="field"] .panel-field{ display: block; }

.courses-dd .subpanel a{
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  border-radius: 8px;
}
.courses-dd .subpanel a:hover{
  background: rgba(246,161,30,.10);
   color: var(--color-primary);
}

/* Right actions */
.header__actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: nowrap;
  margin-left: 0px;
}



.header__actions > *{
  flex: 0 0 auto;
}

/* icon button */
.header__iconbtn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* divider */
.header__divider{
  width: 1px;
  height: 26px;
  background: rgba(0,0,0,.10);
}

/* user dropdown */
.user-dd{
  position: relative;
  height: 42px;
  align-items: center;
}
.header__userBtn{
  border: 0;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.user-dropdown{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
  z-index: 2000;
  margin-top: 12px;
}
.user-dd[data-open="true"] .user-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 5px;
  text-decoration: none;
  font-weight: 400;
  color: #4D5C6D;
  transition: background .2s ease;
  font-size: 14px;
}
.user-dropdown a:hover{
  background: rgba(246,161,30,.10);
  color: var(--color-primary);
}

.user-icon {
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.user-dropdown a:hover .user-icon {
  color: var(--color-primary);
}

.user-dropdown .logout {
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: 6px;
}

/* CTA */
.header__cta{
  text-decoration: none;
  background: var(--color-primary, #F6A11E);
  color: #fff;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}

.signIn {
   
    color: #black;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    display: none;
}

.signUp {
    background: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    display: none;
    /*box-shadow: 0 6px 14px rgba(246, 161, 30, .25);*/
}

/* Desktop-only blocks */
.header__desktopOnly{ display: flex; }

.chev{
  width:7px;
  height:7px;
  display:inline-block;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform: rotate(45deg);
  margin-top:-2px;
  opacity:.8;
}

.my-course-btn{
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding:10px 16px;
  border-radius:999px;
  font-weight:400;
  border:0;
  cursor:pointer;
  white-space:nowrap;
  box-shadow: 0 6px 14px rgba(246,161,30,.25);
  display: none;
}
.cta:hover{ filter: brightness(.98); }

.icon-btn{
  width:38px;
  height:38px;
  border-radius:10px;
  display:grid;
  place-items:center;
  border:1px solid transparent;
  background: transparent;
  cursor:pointer;
  color: var(--color-secondary-900);
}
.icon-btn:hover{
  border-color: var(--color-border);
  background: var(--color-bg-soft);
}
.divider{
  width:1px;
  height:26px;
  background: var(--color-border);
}

.user-btn{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid transparent;
  cursor:pointer;
  background: var(--color-bg);
  font-weight:400;
  color: var(--color-text);
  display: none;
}
.user-btn:hover{
  border-color: var(--color-border);
  background: var(--color-bg-soft);
}

/* ================= MOBILE BREAKPOINT ================= */
@media (max-width: 980px){
  .header__burger{
    display:flex;   /* IMPORTANT — not inline-block */
  }
  .header__nav{ display: none; }
  .header__desktopOnly{ display: none !important; }

  .header__inner{
    justify-content: space-between;
  }

  .header__logo{
    margin: 0 auto;
  }
  
  .signIn {
   
    padding: 7px 10px;
}

.signUp {
    padding: 7px 10px;
    /*box-shadow: 0 6px 14px rgba(246, 161, 30, .25);*/
}

.header__inner {
    padding: 7px 8px;
    gap: 8px;
}

/* logo */
.header__logo img{
  height: 65px;
}

}

/* ================= DRAWER ================= */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.drawer.is-open{
  pointer-events: auto;
}

.drawer__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .2s ease;
}
.drawer.is-open .drawer__overlay{
  opacity: 1;
}

/* panel (MUST remain absolute for slide) */
.drawer__panel{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: min(88vw, 360px);
  background: #fff;
  transform: translateX(-105%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
}
.drawer.is-open .drawer__panel{
  transform: translateX(0);
}

/* top profile bar */
.drawer__top{
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.drawer__profile{
  display: flex;
  align-items: center;
  gap: 12px;
  display: none;
}

.mobile_logo {
    display: none;
}
.drawer__avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e9e9e9;
}
.drawer__name{
  font-weight: 600;
  color: #111;
  line-height: 1.1;
}
.drawer__account{
  font-size: 12px;
  color: rgba(0,0,0,.55);
  text-decoration: none;
}
.drawer__close{
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  border-radius: 10px;
}

/* nav scroll */
.drawer__nav{
  padding: 10px 0;
  overflow: auto; /* allows full expansion without overlap */
  -webkit-overflow-scrolling: touch;
}

/* items */
.drawer__item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: #111;
  font-weight: 400;
}
.drawer__item:hover{
  background: rgba(0,0,0,.03);
}

.drawer__icon{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* accordion container */
.drawer__acc{
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* accordion button */
.drawer__accBtn{
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  color: #111;
}

.drawer__left{
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 400;
}

/* chevron */
.drawer__chev{
  transition: transform .2s ease;
  color: #111;
}

/* MAIN panel (IMPORTANT: no fixed max-height here; JS sets it) */
.drawer__accPanel,
.drawer__subAccPanel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  background: #fff;
}

/* open state: only rotate chevron, do NOT cap height */
.drawer__acc.is-open .drawer__chev{
  transform: rotate(180deg);
}

.drawer__acc.is-open > .drawer__accPanel{
  max-height: 2000px; /* big enough */
}

/* nested accordion (Choose Course Type / Choose Field) */
.drawer__subAcc{
  border-top: 1px solid rgba(0,0,0,.05);
}

.drawer__subAccBtn{
  width: 100%;
  padding: 12px 16px 12px 52px;
  border: 0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  color: #111;
}

.drawer__subAccPanel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
  background: #fff;
}

/* sub links */
.drawer__subItem,
.drawer__subLink{
  display: block;
  padding: 12px 16px 12px 72px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}
.drawer__subItem:hover,
.drawer__subLink:hover{
  background: rgba(246,161,30,.10);
}

/* active highlight */
.drawer__accBtn.is-active,
.drawer__item.is-active{
  color: var(--color-primary, #F6A11E);
}
.drawer__accBtn.is-active .drawer__icon,
.drawer__item.is-active .drawer__icon{
  color: var(--color-primary, #F6A11E);
}

 


/* ================================
   HERO SLIDE ANIMATION (RTL)
=================================== */









/* big rounded feel at bottom like screenshot */
/*.hero__inner::after{*/
/*  content:"";*/
/*  position:absolute;*/
/*  left:0; right:0;*/
/*  bottom:-90px;*/
/*  height: 180px;*/
/*  background: rgba(255,255,255,.55);*/
/*  border-radius: 999px;*/
/*  filter: blur(0px);*/
/*}*/


.user-dd {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1000;
  min-width: 180px;
}

/* ===== Mobile drawer nested accordion (Choose Course Type/Field) ===== */

.drawer__subAcc{
  border-top: 1px solid rgba(0,0,0,.06);
}

.drawer__subAccBtn{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #111;
  font-weight: 600;
}

.drawer__subIcon{
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #111;
}

.drawer__subAccBtn .drawer__left{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.drawer__subAccBtn .drawer__chev{
  display: inline-flex;
  transition: transform .2s ease;
  color: #777;
}

.drawer__subAcc.is-open .drawer__subAccBtn .drawer__chev{
  transform: rotate(180deg);
  color: var(--color-primary, #f6a11e);
}

.drawer__subAcc.is-open > .drawer__subAccPanel{
  max-height: 1200px; /* big enough */
}

.drawer__acc.is-open .drawer__chev{
  transform: rotate(180deg);
}

/* Panel animation */
.drawer__subAccPanel{
  max-height: 0px;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 0;
}

/* Links inside */
.drawer__subLink{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 54px; /* indent like screenshot */
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.drawer__subLink:hover{
  background: rgba(0,0,0,.03);
}

/* square checkbox look */
.drawer__box{
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(0,0,0,.25);
  border-radius: 3px;
  background: transparent;
  flex: 0 0 auto;
}



/* Responsive */
@media (max-width: 1100px){
  .hero__content{ padding-left: 40px; }
  .hero__title{ font-size: 52px; }
  .hero__visual{ width: 480px; right: 24px; }
}

@media (max-width: 900px){
  .hero__inner{
    padding-bottom: 170px;
  }

  .hero__visual{
    position: static;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 16px 10px;
  }

  .hero__content{
    padding: 58px 20px 20px;
    max-width: 100%;
    text-align: center;
  }
   .hero-dots {
        justify-content: center;
    }
  

  .hero__stats{
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 32px);
  }
}

@media (max-width: 520px){
  .hero__title{ font-size: 40px; }
  .hero__subtitle{ font-size: 16px; }
  .hero__stats{ grid-template-columns: 1fr; }
}

.drawer__svg{
  width: 20px;
  height: 20px;
  display: block;
}

.drawer__icon{
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111; /* uses currentColor */
}

.drawer__subItem {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px 12px 52px;
  text-decoration: none;
  color: #111;
  font-weight: 400;
}

.drawer__subIcon {
  width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.mobile_register {
    display: none;
}

.header--scrolled {
  box-shadow: 
    0 1px 0 0 rgba(139, 141, 157, .05),
    0 5px 10px -7px rgba(65, 71, 108, .25);
  transition: box-shadow 0.25s ease;
}
/* =========================
   SEARCH POPUP
========================= */
.searchPopup{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.searchPopup.is-open{
   display: block;
}

.searchPopup__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  pointer-events: auto;
}

.searchPopup.is-open .searchPopup__overlay{
  opacity: 1;
}

.searchPopup__panel{
  position: relative;
  width: 100%;
  z-index: 2;
}

.searchPopup__inner {
    width: min(1300px, calc(100% - 32px));
    margin: 0px auto 0 auto;
}

.searchPopup__bar{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.searchPopup__input{
  border: 0;
  outline: 0;
  flex: 1;
  font-size: 18px;
  padding: 10px 8px;
}

.searchPopup__iconBtn,
.searchPopup__closeBtn{
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 999px;
  color: #111;
}

.searchPopup__iconBtn:hover,
.searchPopup__closeBtn:hover{
  background: rgba(0,0,0,.06);
}

.searchPopup__results{
  margin-top: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  overflow: hidden;
  max-height: 60vh;
  overflow-y: auto;
  display: none;
}

.searchPopup__results.is-visible{
  display: block;
}

.searchItem{
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-weight: 600;
}

.searchItem:last-child{
  border-bottom: 0;
}

.searchItem:hover{
  background: rgba(246,161,30,.10);
}

.searchEmpty{
  padding: 14px 16px;
  color: rgba(0,0,0,.60);
  font-weight: 600;
}

/* Mobile spacing */
@media (max-width: 980px){
  .searchPopup__inner{
    width: calc(100% - 20px);
    margin-top: 0px;
  }

  .searchPopup__input{
    font-size: 16px;
  }
}

.lls-container {
  max-width: 1330px;
  width: calc(100% - 64px);
  margin: 0 auto;
}

.lls-hero-course {
  background: #ffffff;
  overflow: visible;
  position: relative;
}

/* TOP HERO */
.lls-hero-top {
  padding: 74px 0 64px;
    position: relative;
    opacity: 0.85;
    background-color: #122B46;
    background-image: linear-gradient(180deg, #41556b 4%, #0c1826 100%);
}

.lls-hero-top__wrap {
  display: block;
}

.lls-hero-left {
  max-width: 860px;
}

.lls-hero-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.18;
  font-size: clamp(42px, 48px, 76px);
}

 h2 {
    color: #122b46;
    font-weight: 500;
}
/* BOTTOM SECTION */
.lls-hero-bottom {
  background: #ffffff;
  padding: 34px 0 56px;
}

.lls-hero-bottom__wrap {
  display: flex;

  gap: 64px;
  align-items: start;
  overflow: visible;
}

.lls-hero-content {
  min-width: 0;
  width: 73%;
}

  .lls-hero-content h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .lls-hero-content h3 {
    font-size: 20px;
    line-height: 1.2;
  }


  .lls-hero-content li {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 15px;
    color: #4c5c70;
  }
  
  .lls-mobile-sticky-bar__inner {
      justify-content: center;
  }
  
  .lls-course-hero__cta-width {
      max-width: 150px;
  }
  
  
 .lls-hero-content p:not(.has-text-color) a {
    color: #F6A11E;
}

.has-text-color a {
    font-size: 20px;
}
  
  .has-luminous-vivid-amber-background-color {
      background-color:#fcb900;
  }
.has-background {
        padding: 1.25em 2.375em;
}

.wp-block-table {
    overflow-x: auto;
}

.wp-block-table .has-fixed-layout {
    table-layout: fixed;
    width: 100%;
}
.wp-block-table table {
    border-collapse: initial;
    border-radius: 4px;
}

table {
    border-spacing: 0;
    max-width: 100%;
    width: 100%;
    empty-cells: show;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 27px;
    border: 1px solid #E7E9EC;
}

tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}

tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
}

.wp-block-table table td:first-child, .wp-block-table table th:first-child {
    padding-left: 1rem;
}

.wp-block-table .has-fixed-layout td, .wp-block-table .has-fixed-layout th {
    word-break: break-word;
}

.wp-block-table table td, .wp-block-table table th {
    border-color: #E7E9EC;
    border-right: 1px solid #E7E9EC;
}

.wp-block-table td, .wp-block-table th {
    border: 1px solid;
    padding: .5em;
}

td {
    vertical-align: top;
}

.wp-block-media-text, figure.wp-block-audio {
    margin: 0 0 1.6875rem;
}


.wp-block-media-text {
    /*box-sizing: border-box;*/
    direction: ltr;
    display: grid;
    /*grid-template-columns: 50% 1fr;*/
    grid-template-rows: auto;
}

.wp-block-media-text>.wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
}

.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content, .wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media, .wp-block-media-text>.wp-block-media-text__content, .wp-block-media-text>.wp-block-media-text__media {
    align-self: center;
}

.wp-block-media-text__media img, .wp-block-media-text__media video {
    height: auto;
    max-width: unset;
    vertical-align: middle;
    width: 100%;
}

.wp-block-media-text>.wp-block-media-text__content {
    direction: ltr;
    grid-column: 2;
    grid-row: 1;
    padding: 0 8%;
    word-break: break-word;
}

.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content, .wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media, .wp-block-media-text>.wp-block-media-text__content, .wp-block-media-text>.wp-block-media-text__media {
    align-self: center;
}

.lls-hero-content p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: #4c5c70;
  /*max-width: 820px;*/
}

.lls-hero-content strong {
  /*color: #4c5c70;*/
  font-weight: 700;
}

.lls-hero-content h2 strong {
  color: #122b46;
  font-weight: 600;
}

.lls-hero-content h3 strong {
  color: #122b46;
  font-weight: 700;
}
/* RIGHT CARD */
.lls-hero-right {
  position: sticky;
  top: 95px;
  align-self: start;
  margin-top: -260px;
  z-index: 5;
}

.lms-course-btn {
    display: flex;
}

.lls-course-hero__cta {
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 18px 28px;
    gap: 8px;
    background: var(--brand);
    color: var(--color-text-inverse);
    text-decoration: none;
    border-radius: 999px;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(246, 161, 30, 0.22);
    transition: transform var(--transition-base, 250ms ease), box-shadow var(--transition-base, 250ms ease), background var(--transition-base, 250ms ease);
    width: max-content;
    width: stretch;
    text-align: center;
}

.lls-course-card {
  width: 100%;
  max-width: 395px;
  margin-left: auto;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f8f8;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.lls-course-card__media {
  background: #d9edf6;
  
}

.lls-course-card__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
  
}

.lls-course-card__body {
  padding: 22px 28px 26px;
  background: #f8f8f8;
}

.lls-course-card__pill {
  margin-bottom: 20px;
  background: #f2f2f2;
  color: #64748b;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  padding: 16px 18px;
}

.lls-course-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: #f2a40f;
  color: #ffffff;
  border-radius: 999px;
  padding: 20px 18px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.lls-course-card__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(242, 164, 15, 0.28);
}

.lls-course-card__cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(242, 164, 15, 0.2), 0 12px 28px rgba(242, 164, 15, 0.28);
}

.lls-course-card__price {
  margin-top: 22px;
  text-align: center;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 500;
  color: #081a39;
}

.wp-block-columns {
    display: flex;
}
.wp-block-image img {
    max-width: 275px;
}



/* TABLET */
@media (max-width: 1024px) {
  .lls-container {
    width: calc(100% - 40px);
  }

  .lls-hero-top {
    padding: 48px 0 84px;
  }

  .lls-hero-bottom__wrap {
  flex-direction: column-reverse;
    gap: 0;
  }

  .lls-hero-right {
    position: static;
    margin-top: -36px;
    margin-bottom: 24px;
  }

  .lls-course-card {
    max-width: 420px;
    margin-left: 0;
  }

  .lls-hero-bottom {
    padding: 58px 0 44px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .lls-container {
    width: calc(100% - 24px);
  }

  .lls-hero-top {
    padding: 34px 0 72px;
  }

  .lls-hero-title {
    font-size: clamp(34px, 32px, 48px);
    line-height: 1.5;
  }

  .lls-hero-content h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .lls-hero-content p {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .lls-course-card__body {
    padding: 18px 18px 20px;
  }

  .lls-course-card__cta {
    padding: 17px 16px;
    font-size: 17px;
  }

  .lls-course-card__price {
    font-size: 26px;
  }
  
  .lls-hero-content {
  min-width: 0;
  width: 100%;
}

    .wp-block-media-text.is-stacked-on-mobile {
        grid-template-columns: 100% !important;
    }
    
        .wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media {
        grid-column: 1;
        grid-row: 1;
    }
    
        .wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content {
        grid-column: 1;
        grid-row: 2;
        padding-top: 15px;
    }
    
    ol {
            padding-inline-start: 20px;
    }

}

@media (prefers-reduced-motion: reduce) {
  .lls-course-card__cta {
    transition: none;
  }
}

/* ✅ Mobile only sticky bottom bar */
.lls-mobile-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
 
  z-index: 999999999;
  background: rgba(19, 43, 49, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.12);
  display: none;
}

.lls-mobile-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border-radius: 0;
  padding: 10px 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  justify-content: center;
}

.lls-mobile-sticky-bar__content {
  min-width: 0;
  flex: 1;
}

.lls-mobile-sticky-bar__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--color-secondary-900);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lls-mobile-sticky-bar__btn {
  flex: 0 0 auto;
  min-width: 136px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(246, 161, 30, 0.24);
}

.lls-mobile-sticky-bar__btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .lls-mobile-sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 88px;
  }
  
  .waWidget__fab {
      margin-bottom: 70px;
    margin-left: -13px;
    width: 50px;
    height: 50px;
  }
  
      .aiWidget__fab {
        right: 7px !important;
        bottom: 80px !important;
    }
    
    .waWidget__fab img {
    width: 50px;
    height: 50px;
    fill: currentColor;
}

.aiWidget__fab img {
    border-radius: 50%;
    width: 50px;
    height: 50px; 
    
}
}

@media (min-width: 768px) {
  .lls-mobile-sticky-bar {
    display: none !important;
  }
}

/* hidden by default */
#enroll-botton-stikcy {
  display: none;
}

.wp-block-table {
    margin: 10px 0px;
}

.has-black-background-color{background-color:#000}
.has-white-background-color{background-color:#fff}
.has-cyan-bluish-gray-background-color{background-color:#abb8c3}
.has-pale-cyan-blue-background-color{background-color:#8ed1fc}
.has-vivid-cyan-blue-background-color{background-color:#0693e3}
.has-vivid-purple-background-color{background-color:#9b51e0}
.has-light-green-cyan-background-color{background-color:#7bdcb5}
.has-vivid-green-cyan-background-color{background-color:#00d084}
.has-luminous-vivid-amber-background-color{background-color:#fcb900}
.has-luminous-vivid-orange-background-color{background-color:#ff6900}
.has-vivid-red-background-color{background-color:#cf2e2e}
.has-pale-pink-background-color{background-color:#f78da7}
.has-light-gray-background-color{background-color:#f0f0f0}
.has-gray-background-color{background-color:#666}
.has-dark-gray-background-color{background-color:#111}

.has-black-color{color:#000 !important}
.has-white-color{color:#fff !important}
.has-white-color a {color:#fff !important}
.has-cyan-bluish-gray-color{color:#abb8c3 !important}
.has-pale-cyan-blue-color{color:#8ed1fc !important}
.has-vivid-cyan-blue-color{color:#0693e3 !important}
.has-vivid-purple-color{color:#9b51e0 !important}
.has-light-green-cyan-color{color:#7bdcb5 !important}
.has-vivid-green-cyan-color{color:#00d084 !important}
.has-luminous-vivid-amber-color{color:#fcb900 !important}
.has-luminous-vivid-orange-color{color:#ff6900 !important} 
.has-luminous-vivid-orange-color strong{color:#ff6900 !important} 
.has-vivid-red-color{color:#cf2e2e !important}
.has-pale-pink-color{color:#f78da7 !important}
.has-light-gray-color{color:#f0f0f0 !important}
.has-gray-color{color:#666 !important}
.has-dark-gray-color{color:#111 !important}

p.has-background {
    padding: 30px;
}




@media (max-width: 767px) {
.has-background {
    padding: 1.15em 1.15em;
}
.cookie-banner {
    bottom: -9px; }
    
}
.site-footer {
    background: #3d3b3b;
    color: var(--color-text-inverse);
}

.footer-inner {
    max-width: 1330px;
    margin: 0 auto;
    padding: 60px 16px;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr;
    gap: 48px;
}

/* Logo */
.footer-logo img {
    height: 74px;
    width: auto;
    display: block;
    margin-bottom: 22px;
}

.footer-brand {
    padding: 0px 45px 0px 0px;
}

/* Typography */
.footer-heading {
    margin: 0 0 18px;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-inverse);
}

.footer-title {
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--color-text-inverse);
}

/* Contact lines */
.footer-line {
    display: flex;
    gap: 7px;
    align-items: flex-start;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.6;
}
.footer-line:hover {
    color: var(--color-primary);
}
.footer-line.no-hover:hover {
    color: rgba(255, 255, 255, 0.92);
}

.fi {
    width: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

/* Separators */
.footer-sep {
    height: 2px;
    width: 220px;
    background: var(--color-primary);
    margin: 24px 0;
    opacity: 0.85;
}

.footer-dashed {
    height: 1px;
    width: 260px;
    border-bottom: 2px dashed var(--color-primary);
    margin: 22px 0 18px;
    opacity: 0.8;
}

/* Useful links */
.footer-links {
    display: grid;
    gap: 14px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
}
.footer-links a:hover {
    color: var(--color-primary);
}

/* Hiring */
.footer-hiring {
    display: inline-block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 800;
    color: var(--color-primary);
}
.footer-hiring:hover {
    filter: brightness(0.98);
    text-decoration: underline;
}

/* Subscribe */
.footer-subscribe {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 22px;
    flex-direction: column;
}

.email-subscribe {
    gap:14px;
    display: flex;
}
.footer-subscribe input {
    flex: 1;
    height: 46px;
    padding: 0 14px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-text-inverse);
    outline: none;
}
.footer-subscribe input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.footer-subscribe input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-focus-ring);
}

.footer-subscribe button {
    height: 46px;
    padding: 0 10px;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 800;
    background: var(--color-primary);
    color: var(--color-text-inverse);
}
.footer-subscribe button:hover {
    filter: brightness(0.98);
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 14px;
    margin: 22px 0 18px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #ffffff;
    color: #3d3b3b;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.25s ease;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-btn:hover {
    background: var(--color-primary);
    color: var(--color-text-inverse);
    transform: translateY(-2px);
}

/* Policy links */
.footer-policy {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 6px;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
}
.footer-policy a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}
.footer-policy a:hover {
    color: var(--color-primary);
}
.footer-policy .dot {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 980px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 46px 16px;
    }
    .footer-sep,
    .footer-dashed {
        width: 100%;
        max-width: 320px;
    }
}


/* =========================
   WhatsApp Floating Widget
========================= */
.waWidget {
  position: fixed;
  left: 22px;
  bottom: 40px;
  z-index: 999999; /* keep above FAQ etc. */
  pointer-events: none; /* enable only when needed via children */
  font-family: inherit;
}

/* Floating button */
.waWidget__fab {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;

  background: #f6a11e00;
  /*color: var(--color-text-inverse);*/

  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}

.waWidget__fab:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadowHover);
}

.waWidget__fab img {
  width: 60px;
  height: 60px;
  fill: currentColor;
}

/* Overlay to close on outside click */
.waWidget__overlay {
 pointer-events: none;
}

/* Popup */
.waWidget__popup {
  position: absolute;
  left: 0;
  bottom: 84px;
  width: min(350px, calc(100vw - 44px));
  border-radius: 18px;
  overflow: hidden;

  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadowHover);

  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

/* Header */
.waWidget__header {
  display: flex;
  align-items: center;
  gap: 20px 12px;
  padding: 14px 14px;
  background: #095E54;
  color: var(--color-text-inverse);
}

.waWidget__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--color-secondary-700);
  border: 2px solid rgba(255,255,255,.18);
  flex: 0 0 auto;
}

.waWidget__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.waWidget__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.waWidget__name {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.waWidget__role {
  font-weight: 600;
  font-size: 13px;
  opacity: .9;
}

.waWidget__close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.12);
  color: var(--color-text-inverse);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.waWidget__close:hover {
  background: rgba(255,255,255,.18);
}

/* Body */
.waWidget__body {
  position: relative;
  padding: 14px;
  background-image: url("https://www.lawctopuslawschool.com/wp-content/uploads/2024/07/whatsapp-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.waWidget__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(230, 221, 212, 0.91); /* #E6DDD4 at 0.91 */
  z-index: 0;
}

/* Keep content above overlay */
.waWidget__msg {
  position: relative;
  z-index: 1;
}

.waWidget__msg {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 14px;
  padding: 12px 12px 10px;
  max-width: 78%;
}

.waWidget__msgName {
  font-weight: 800;
  font-size: 13px;
  color: var(--color-text-subtle);
  margin-bottom: 6px;
}

.waWidget__msgText {
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.4;
}

.waWidget__msgTime {
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: right;
}

/* Footer */
.waWidget__footer {
  padding: 12px 14px 14px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-soft);
}

.waWidget__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
 gap: 10px;
  background: #4FCE5D;
  color: var(--color-text-inverse);

  box-shadow: 0 10px 20px var(--brandShadow);
  transition: transform .15s ease, filter .2s ease;
}




.waWidget__ctaIcon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.waWidget__cta:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

/* OPEN STATE */
.waWidget.is-open .waWidget__popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/*.waWidget.is-open .waWidget__overlay {*/
/*  pointer-events: auto;*/
/*}*/

/* Mobile: keep within screen */
@media (max-width: 520px) {
  .waWidget {
    left: 14px;
    bottom: 14px;
  }
  .waWidget__popup {
    bottom: 78px;
  }
}

/* =========================
   AI Floating Button (Right)
========================= */
.aiWidget__fab {
  position: fixed;
  right: 22px;
  bottom: 40px;
  z-index: 999998;

  width: 60px;
  height: 60px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: #ffffff00;
  border: 1px solid var(--color-border);

  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease;

  cursor: pointer;
  display: none;
}

.aiWidget__fab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadowHover);
}

.aiWidget__fab img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

@media (max-width: 520px) {
.aiWidget__fab {
    right: 14px;
    bottom: 14px;
}
}


  .cookie-banner{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 0.5px solid #dad3d3;
    z-index: 99999;
    display: none;
    font-family: Arial, sans-serif;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

  .cookie-banner.show{
    display: block;
    transform: translateY(0);
  }

  .cookie-banner__inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
  }

  .cookie-banner__text{
    flex: unset;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
  }

  .cookie-banner__link{
    color: #d10000;
    font-weight: 600;
    text-decoration: none;
  }

  .cookie-banner__btn{
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 20px !important
  }
