/* =========================================
   STOREGISTER BRAND VARIABLES
   ========================================= */
:root {
  --sr-primary: #0B5F5A;
  --sr-secondary: #0E766F;
  --sr-accent: #FF8C1A;
  --sr-white: #FFFFFF;
  --sr-text-dark: #1F2933;
  --sr-accent: #FF8C1A;
}

/* =========================================
   HEADER NAVBAR
   ========================================= */
.Header__navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--sr-primary), var(--sr-secondary));
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.Header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 28px;
}

/* Logo */
.Header__logo img {
  height: 36px;
}

/* =========================================
   MENU
   ========================================= */
.Header__menuList {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.Header__tabsTab {
  font-size: 15px;
  font-weight: 500;
  color: var(--sr-white);
  opacity: 0.85;
  cursor: pointer;
  position: relative;
  transition: opacity 0.2s ease;
}

.Header__tabsTab:hover {
  opacity: 1;
}

/* Active Tab */
#portal_tabCases {
  color: var(--sr-accent);
  font-weight: 600;
}

#portal_tabCases::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: var(--sr-accent);
}

/* =========================================
   USER / SEARCH / LANGUAGE
   ========================================= */
.Header__menuTab + *,
.Header__menuTab + * + * {
  display: flex;
  align-items: center;
}

.Header__menuicon {
  display: none; /* hide hamburger on desktop */
}

/* =========================================
   BANNER / SEARCH SECTION
   ========================================= */
.Header__searchSection {
  height: 380px;
  background: linear-gradient(
    120deg,
    rgba(11,95,90,0.95),
    rgba(14,118,111,0.9)
  );
  display: flex;
  align-items: center;
}

.Header__searchSection .Header__container {
  max-width: 1200px;
  color: var(--sr-white);
}

/* Banner Heading */
.Header__searchTitle {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

/* Banner Description */
.Header__description {
  font-size: 17px;
  max-width: 560px;
  opacity: 0.95;
  margin-bottom: 24px;
}

/* Search Bar in Banner */
.Header__searchSection input {
  max-width: 520px;
  border-radius: 8px;
}

/* =========================================
   MOBILE OPTIMIZATION
   ========================================= */
@media (max-width: 768px) {

  .Header__container {
    height: 64px;
    padding: 0 16px;
  }

  .Header__menuTab {
    display: none;
  }

  .Header__menuicon {
    display: block;
  }

  .Header__searchSection {
    height: 240px;
    text-align: center;
  }

  .Header__searchTitle {
    font-size: 24px;
  }

  .Header__description {
    font-size: 14px;
  }
}
/* =========================================
   REMOVE SEARCH (HEADER + BANNER)
   ========================================= */

/* Header search box */
.Header__navbar .Search,
.Header__navbar .Header__search,
.Header__navbar input[type="search"] {
  display: none !important;
}

/* Banner search section */
.Header__searchSection .Search,
.Header__searchSection input,
.Header__searchSection .searchBox,
.Header__searchSection .Search__container {
  display: none !important;
}

/* Mobile search icon */
.Header__menuicon + .Search,
.Header__menuicon .Search {
  display: none !important;
}
/* =========================================
   REMOVE ALL SEARCH (HEADER + BANNER)
   ========================================= */

/* Header search container */
.Header__navbar .Search,
.Header__navbar .Search__container,
.Header__navbar input[type="search"],
.Header__navbar .searchBox {
  display: none !important;
}

/* Search icon / button */
.Header__navbar button,
.Header__navbar .Search__icon,
.Header__navbar .Search__button {
  display: none !important;
}

/* Banner / Welcome section search */
.Header__searchSection .Search,
.Header__searchSection input,
.Header__searchSection .searchBox,
.Header__searchSection .Search__container {
  display: none !important;
}

/* Remove leftover spacing caused by search */
.Header__searchSection {
  padding-top: 40px !important;
}

/* =========================================
   KEEP FLOATING SUBMIT TICKET BUTTON
   (DO NOT TOUCH)
   ========================================= */
/* No rules here intentionally */
/* =========================================================
   HIDE SEARCH – HEADER + BANNER (NO DESIGN CHANGE)
   ========================================================= */

/* Header search bar & icon */
.Header__navbar .Search,
.Header__navbar .Search__container,
.Header__navbar input[type="search"],
.Header__navbar button,
.Header__navbar .Search__icon,
.Header__navbar .Search__button {
  display: none !important;
}

/* Banner search bar */
.Header__searchSection .Search,
.Header__searchSection input,
.Header__searchSection .searchBox,
.Header__searchSection .Search__container {
  display: none !important;
}

/* =========================================================
   HIDE BANNER TEXT ONLY (KEEP BANNER BACKGROUND)
   ========================================================= */

.Header__searchTitle,
.Header__description {
  display: none !important;
}

/* =========================================================
   FLOATING "SUBMIT A TICKET" BUTTON
   ========================================================= */

.SubmitTicket__floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.SubmitTicket__floating a {
  background-color: var(--sr-accent);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
}

.SubmitTicket__floating a:hover {
  background-color: #e6760f;
  transform: translateY(-2px);
}
/* =========================================================
   PREVENT CHAT OVERLAP WITH SUBMIT TICKET BUTTON
   ========================================================= */

/* Default floating submit ticket position */
.SubmitTicket__floating {
  position: fixed;
  right: 24px;
  bottom: 96px; /* pushes it above chat widget */
  z-index: 9999;
}

/* Extra safety for smaller screens */
@media (max-width: 768px) {
  .SubmitTicket__floating {
    bottom: 120px;
  }
}
/* =========================================
   SIGN-IN PAGE : NEXT BUTTON COLOR
   ========================================= */

/* Primary Next button */
button[type="submit"],
button:contains("Next"),
input[type="submit"] {
  background-color: var(--sr-accent) !important; /* #FF8C1A */
  border-color: var(--sr-accent) !important;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 6px;
}

/* Hover state */
button[type="submit"]:hover,
input[type="submit"]:hover {
  background-color: #e6760f !important;
  border-color: #e6760f !important;
}
/* Force override for Zoho login Next button */
.SignIn button,
.SignIn__btn,
.Login button,
button.zd_btn,
button.zd-primary {
  background-color: var(--sr-accent) !important;
  border-color: var(--sr-accent) !important;
  color: #ffffff !important;
}
/* ======================================================
   ZOHO DESK SIGN-IN : NEXT BUTTON COLOR OVERRIDE
   ====================================================== */

/* Main login button */
.zd_signin button,
.zd_signin .zd_btn,
.zd_signin .zd-primary,
.zd_signin button[type="button"],
.zd_signin button[type="submit"] {
  background-color: #FF8C1A !important;
  border-color: #FF8C1A !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
}

/* Hover state */
.zd_signin button:hover,
.zd_signin .zd_btn:hover,
.zd_signin .zd-primary:hover {
  background-color: #e6760f !important;
  border-color: #e6760f !important;
}

/* Active / focus */
.zd_signin button:focus,
.zd_signin button:active {
  box-shadow: 0 0 0 3px rgba(255,140,26,0.35) !important;
}
/* LAST-RESORT FORCE OVERRIDE */
button[style*="background"],
.zd_signin button[style] {
  background-color: #FF8C1A !important;
  border-color: #FF8C1A !important;
  color: #FFFFFF !important;
}

