#tarteaucitronAlertBig {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1);
}

#tarteaucitronAlertBig.cookieyes-banner {
  opacity: 1 !important;
  pointer-events: auto;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #334756 !important;
  border-top: 4px solid #F47126 !important;
  box-shadow: 0 -1px 10px rgba(0,0,0,0.15);
  color: #d0d0d0 !important;
  z-index: 2147483645;
  overflow-x: hidden;
}

/* 🔸 Layout container */
#tarteaucitronAlertBig.cookieyes-banner .cookieyes-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 18px 16px 18px 24px;
  gap: 24px;
  box-sizing: border-box;
}

/* 🔸 Text block */
#tarteaucitronAlertBig.cookieyes-banner .banner-text {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  min-width: 320px;
  max-width: calc(100% - 390px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  word-break: normal;
  box-sizing: border-box;
}

/* 🔹 Title */
#tarteaucitronAlertBig.cookieyes-banner .banner-title {
  font-size: 1.35em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: 0.3em;
  white-space: normal;
}

/* 🔹 Description */
#tarteaucitronAlertBig.cookieyes-banner .banner-description {
  font-size: 0.95em;
  color: #d0d0d0;
  line-height: 1.5;
  margin-bottom: 0.3em;
}

/* 🔹 Privacy + Readmore links inline */
#tarteaucitronAlertBig.cookieyes-banner .banner-text .banner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

#tarteaucitronAlertBig.cookieyes-banner .banner-text .banner-links button,
#tarteaucitronAlertBig.cookieyes-banner .banner-text .banner-links a {
  font-size: 0.95em;
  background: none;
  border: none;
  color: #b1bac7 !important;
  text-decoration: underline;
  padding: 0;
  margin: 0;
  cursor: pointer;
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}

#tarteaucitronAlertBig.cookieyes-banner .banner-text .banner-links a:hover,
#tarteaucitronAlertBig.cookieyes-banner .banner-text .banner-links button:hover {
  color: #F47126 !important;
}


/* 🔹 Privacy Links */
#tarteaucitronAlertBig.cookieyes-banner .banner-text a {
  margin-top: 6px;
  font-size: 0.95em;
  color: #b1bac7 !important;
  text-decoration: underline;
  text-align: left;
}

#tarteaucitronAlertBig.cookieyes-banner .banner-text a:hover {
  color: #F47126 !important;
}

#tarteaucitronAlertBig.cookieyes-banner .banner-text .privacy-separator {
  margin: 0 6px;
  font-size: 0.95em;
  color: #b1bac7;
}


/* 🔸 Buttons container */
#tarteaucitronAlertBig.cookieyes-banner .banner-buttons {
  flex-wrap: nowrap !important;
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  max-width: 38vw;
}

/* 🔸 Buttons */
#tarteaucitronAlertBig.cookieyes-banner .banner-buttons > * {
  flex: 0 1 auto !important;
  min-width: 135px !important;
  max-width: 135px !important;
  padding: 0 18px !important;
  height: 42px !important;
  line-height: 1.5 !important;
  font-weight: bold;
  border-radius: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  margin: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* 🔸 CTA colors */
#tarteaucitronAlertBig.cookieyes-banner .tarteaucitronAllow,
#tarteaucitronAlertBig.cookieyes-banner .tarteaucitronDeny {
  background-color: #1863dc !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  font-size: 0.95em;
}

#tarteaucitronAlertBig.cookieyes-banner #tarteaucitronCloseAlert {
  background-color: #F47126 !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  font-size: 0.95em;
}

/* 🔸 Focus */
#tarteaucitronAlertBig.cookieyes-banner .banner-buttons > *:focus {
  outline: 2px solid #F47126 !important;
}


/* 🔸 Hide close cross */
#tarteaucitronAlertBig.cookieyes-banner #tarteaucitronCloseCross {
  display: none !important;
}

/* 🔒 Cookie Icon Styling */
#tarteaucitronIcon {
  display: none;
  background: transparent; 
  color: #fff;
  z-index: 2147483646;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

#tarteaucitronIcon img {
  width: 25px;
  height: 25px;
  fill: #fff;
}

/* 📱 Adjust Tarteaucitron icon position on mobile */
@media (max-width: 600px) {
  #tarteaucitronIcon {
    bottom: 5px !important;
    right: 5px !important; /* adjust to 20px or more if needed */
    position: fixed !important;
  }
}


/* 📱 Responsive layout */
@media (max-width: 1120px) {
  #tarteaucitronAlertBig.cookieyes-banner .cookieyes-inner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    padding: 13px 10px;
    gap: 10px;
  }

  #tarteaucitronAlertBig.cookieyes-banner .banner-text {
    align-items: center;
    margin-bottom: 14px;
    max-width: 100%;
  }

  #tarteaucitronAlertBig.cookieyes-banner .banner-buttons {
    width: 100%;
    justify-content: center !important;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
  }

  #tarteaucitronAlertBig.cookieyes-banner .banner-buttons > * {
    flex: 0 0 auto !important;
    min-width: 130px !important;
    max-width: 100%;
    padding: 0 16px !important;
    text-align: center;
    white-space: normal !important;
    overflow: visible;
    text-overflow: unset;
  }
}

@media (max-width: 600px) {
  #tarteaucitronAlertBig.cookieyes-banner .banner-buttons {
    flex-direction: column !important;
    align-items: center !important; /* ✅ Center all buttons horizontally */
    justify-content: center !important;
    width: 100%;
    max-width: 100%;
    gap: 10px;
    padding: 0 12px; /* ✅ Add padding to prevent edge overflow */
    box-sizing: border-box;
  }

  #tarteaucitronAlertBig.cookieyes-banner .banner-buttons > * {
    width: 100% !important;
    max-width: 400px !important;
    min-width: 0 !important;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
    margin: 0 auto !important;
  }
}