:root {
  /* Font */
  --font-primary: "Raleway", sans-serif, Arial, Helvetica;
  /* Colors */
  --color-text: #2f2f2f;
  --color-white: #ffffff;
  --color-gray: gray;
  --color-lightgray: lightgray;
  --color-lime: #fcf2ca;
  --color-blue: #3b82f6;
  --color-blue-hover: #60a5fa;
  --color-pink: #e11d48;
  --color-orange: #e55f3e;
  --color-btn-secondary: #4a92f1cc;
  --color-border: #cfcfcf;
  --color-thin-border: #d4d4d4;
  --color-header: #0056b3;
  --color-cat: #737373;
  --color-description: #535353;

  /* Radius & Spacing */
  --radius: 10px;
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s;
}

/*/ ====== utility class============/*/

/* Dark mode gradients 
.bg-gradient-1 {
  background: linear-gradient(
    to bottom left,
    #1e293b 20%,   
    #5b21b6 50%,   
    #1e293b 80%
  );
}
.bg-gradient-2 {
  background: linear-gradient(
    to bottom left,
    #1e293b 20%,
    #0f172a 50%,   
    #1e293b 80%
  );
}
.bg-gradient-3 {
  background: linear-gradient(
    to bottom left,
    #1e293b 20%,
    #78350f 50%,   
    #1e293b 80%
  );
}
.bg-gradient-4 {
  background: linear-gradient(
    to bottom left,
    #1e293b 20%,
    #166534 50%,   
    #1e293b 80%
  );
}
.bg-gradient-5 {
  background: linear-gradient(
    to bottom left,
    #0f172a 20%,
    #064e3b 50%,   
    #0f172a 80%
  );
}
.bg-gradient-6 {
  background: linear-gradient(
    to bottom left,
    #1e293b 20%,
    #78350f 50%,  
    #1e293b 80%
  );
}
.bg-gradient-7 {
  background: linear-gradient(
    to right,
    rgba(45, 55, 72, 0.8) 0%,   
    rgba(5, 150, 105, 0.8) 20%, 
    rgba(71, 85, 105, 0.8) 60%  
  );
}
.bg-gradient-8 {
  background: linear-gradient(
    135deg,
    rgba(45, 55, 72, 0.9),
    rgba(5, 150, 105, 0.8),
    rgba(71, 85, 105, 0.7)
  );
}
*/

/* ========== BACKGROUND ===========*/
.bg-gradient-1 {
  background: linear-gradient(
    to bottom left,
    #e2e8f0 20%,
    #f3e8ff 50%,
    #e2e8f0 80%
  );
}
.bg-gradient-2 {
  background: linear-gradient(
    to bottom left,
    #e2e8f0 20%,
    #e0f2fe 50%,
    #e2e8f0 80%
  );
}
.bg-gradient-3 {
  background: linear-gradient(
    to bottom left,
    #e2e8f0 20%,
    #fef3c7 50%,
    #e2e8f0 80%
  );
}
.bg-gradient-4 {
  background: linear-gradient(
    to bottom left,
    #e2e8f0 20%,
    #dcfce7 50%,
    #e2e8f0 80%
  );
}
.bg-gradient-5 {
  background: linear-gradient(
    to bottom left,
    #f0f6ff 20%,
    #edfcf2 50%,
    #f0f6ff 80%
  );
}
.bg-gradient-6 {
  background: linear-gradient(
    to bottom left,
    #e2e8f0 20%,
    #fef3c7 50%,
    #e2e8f0 80%
  );
}
.bg-gradient-7 {
  background: linear-gradient(
    to right,
    #bdcbdf80 0%,
    #2dd4bf80 20%,
    #94a3b880 60%
  );
}
.bg-gradient-8 {
  background: linear-gradient(
    135deg,
    rgba(189, 203, 223, 0.8),
    rgba(45, 212, 191, 0.7),
    rgba(148, 163, 184, 0.6)
  );
}

/* ========== FONT SIZE ========== */
.text-xs {
  font-size: 0.6rem;
}
.text-sm {
  font-size: 0.75rem;
}
.text-md {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.25;
}
.text-xl {
  font-size: 2rem;
}

/* ========== FONT WEIGHT ========== */
.font-400 {
  font-weight: 400;
}
.font-500 {
  font-weight: 500;
}
.font-600 {
  font-weight: 600;
}
.font-700 {
  font-weight: 700;
}

/* ========== TEXT ALIGNMENT ========== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* ========== Color ========== */
.col-black {
  color: var(--color-text);
}

/* ========== Commons ========== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
tr {
  font-family: var(--font-primary);
}

tr {
  font-weight: 400;
  color: #000000;
  font-size: var(--font-sm);
  line-height: 0.9375;
  font-size: 0.75rem;
}

a {
  text-decoration: none;
  color: var(--color-text);
}

.container {
  padding: 0 2vw;
}

.sub-container {
  margin: auto;
  max-width: 95vw;
  padding: 2%;
  text-align: center;
  transition: 0.5s;
  border-radius: 10px;
}

/*breadcrumb*/
.breadcrumb-container {
  display: flex;
  width: 95vw;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 2vw;
  border-radius: 10px;
  margin: auto;
}

.breadcrumb {
  padding: 0 0px;
}

.breadcrumb-list {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-link {
  border-radius: 4px;
  padding: 2px 2px;
  text-decoration: none;
  color: inherit;
}

.breadcrumb-link:hover {
  background-color: #dadada;
}

.breadcrumb-separator {
  color: #a3a3a3;
}

.breadcrumb-title {
  color: #525252;
}

.back-home {
  display: none;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.back-home:hover {
  color: #525252;
}

/* Responsive: Show elements only on large screens */
@media (min-width: 1024px) {
  .lg-only {
    display: inline-block;
  }

  .back-home {
    display: flex;
  }
}

/* Responsive: Show elements only on large screens */
@media (max-width: 750px) {
  .lg-only {
    display: none;
  }

  .back-home {
    display: none;
  }
}

.page-title {
  font-size: 1.7rem;
  padding: 1rem 2rem;
  text-align: center;
}

/* Ping animation */
@keyframes ping {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin: 10px 0;
  font-weight: 500;
}
.alert.success {
  background: #e6ffed;
  color: #0f5132;
  border: 1px solid #badbcc;
}
.alert.error {
  background: #f8d7da;
  color: red;
  border: 1px solid #f5c2c7;
}

.error-message {
  padding-top: 4px;
  font-size: 13px;
  color: #e55f3e;
  font-weight: 600;
  text-align: left;
}
header {
  display: flex;
  width: 95%;
  height: 70px;
  margin: auto;
  z-index: 500;
  justify-content: center;
  align-items: center;
  position: relative;
}
.headercon {
  background: linear-gradient(
    to right,
    rgba(148, 163, 184, 0.5) 0%,
    rgba(45, 212, 191, 0.5) 20%,
    rgba(148, 163, 184, 0.5) 60%
  );
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #e5e5e5; /* neutral-200 */
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(5px);
}
.logo {
  width: auto;
}
.logo img {
  width: auto;
  height: 70px;
  padding: 5px;
}
.navbar {
  width: 85%;
  color: #eee;
  display: flex;
  justify-content: right;
  align-items: center;
}
.navbar ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
}
.navbar ul:hover {
  cursor: pointer;
}
.navbar ul a,
.navbar li a {
  color: white;
}
.navbar ul li:hover {
  cursor: pointer;
}
/* Fix for navbar focus issues */
.navbar input[type="checkbox"],
.navbar input[type="checkbox"]:focus,
.navbar label,
.navbar label:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Specific fix for products dropdown */
#productsMenu input,
#productsMenu input:focus,
#productsMenu label,
#productsMenu label:focus {
  outline: none !important;
  box-shadow: none !important;
}

.navbar .otherOption {
  width: 35%;
  text-align: right;
}
.navbar .menu {
  width: 65%;
  text-align: right;
}
.menu-li > li > a {
  font-weight: 600;
  color: #000 !important;
}

.navbar li {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
.navbar > ul li a {
  padding: 20px;
  display: inline-block; /* Makes the link fill the entire li */
  color: inherit;
}

.navbar li:hover,
.navbar li.active {
  background-color: rgba(0, 0, 0, 0.26) !important;
}
.navbar .menu li ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  margin: 0;
  padding: 0;
  background: #3d5060;
  text-align: left;
  display: none;
  backdrop-filter: blur(5px);
  font-size: small;
  font-weight: normal !important;
}
.navbar li:hover > ul {
  display: block;
}
.navbar .menu ul li {
  width: 100%; /*calc(100%-60px)*/
  text-align: left;
  display: block;
}
.navbar .menu ul ul {
  left: 100%;
  top: 0;
  max-height: 500px;
  overflow-y: auto;
  color: white;
  overflow-x: hidden;
}
.navbar input {
  display: none;
}
/*----------------*/
.navbar label:has(input:checked) i {
  transform: rotate(180deg);
}
.navbar .menu label i {
  transition: transform 0.3s ease;
  margin-left: -10px;
  font-size: 16px;
  vertical-align: middle;
}
/* Optional: rotate icon on active (input checked) */
.navbar label:has(input:checked) i {
  transform: rotate(180deg);
}
.navbar .menu-li > a {
  color: #000;
  font-weight: 600;
}
.navbar .menu-li > label > i {
  color: #000 !important;
  font-weight: 600;
}
/*----------------*/
@media only screen and (max-width: 1140px) {
  header {
    flex-direction: column;
    height: auto;
    justify-content: space-between;
    align-items: center;
  }
  .navbar {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  header {
    margin-bottom: 70px;
  }
  .navbar input[type="checkbox"] {
    display: none !important;
  }
  .navbar .menu li ul {
    width: 100%;
  }

  .logo {
    position: absolute;
    right: 0;
    top: 0;
  }

  .navbar {
    position: fixed;
    width: 80vw;
    background-color: #3d5060;
    top: 0;
    left: 0;
    height: 100vh;
    display: block;
    transition: 0.5s;
    transform: translate(-100%, 0);
  }
  .navbar .openNav {
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #ffffff77;
    padding: 5px;
  }
  .navbar .openNav span {
    display: block;
    background-color: #000;
    width: 30px;
    height: 3px;
    margin: 5px 0;
    transition: 1s;
  }
  .navbar:has(input[name="openNav"]:checked) {
    transform: translate(0, 0);
  }
  .navbar:has(input[name="openNav"]:checked) .openNav span:nth-child(2) {
    opacity: 0;
    transition: 0s;
  }
  .navbar:has(input[name="openNav"]:checked) .openNav span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
  }
  .navbar:has(input[name="openNav"]:checked) .openNav span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
  }
  input[name="openNav"] {
    display: none;
  }
  .navbar li {
    padding: 20px;
    display: block;
    position: unset;
    border-bottom: 2px solid #384857;
    font-weight: 500;
  }

  *
    Remove
    focus
    outline
    from
    navbar
    checkboxes
    */
    .navbar
    input[type="checkbox"]:focus {
    outline: none !important;
    box-shadow: none !important;
  }

  /* Remove focus from dropdown labels */
  .navbar label:focus {
    outline: none !important;
  }

  /* Specific fix for products dropdown */

  .navbar > ul li a {
    padding: 0px;
  }

  .navbar .otherOption,
  .navbar .menu {
    width: 100%;
    text-align: left;
  }
  .navbar .menu li:hover {
    background-color: unset !important;
    border-left: 10px solid #5bb299;
  }

  .navbar .menu label {
    display: block;
    float: right;
  }
  .navbar .menu label i {
    display: block;
    transition: 0.5s ease;
    margin-right: 0;
    color: black;
  }
  .navbar label:has(input:checked) ~ ul {
    max-height: 50vh;
  }
  .navbar .menu ul ul {
    max-height: 400px;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
  }
  .navbar .menu ul ul::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  .navbar .menu li ul {
    max-height: 0;
    position: unset;
    background-color: unset;
    display: block;
    transition: max-height 1.5s ease;
    opacity: 1;
    border-left: 1px solid #ffffff22;
    /* Enable vertical scroll but hide scrollbar */
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
  }

  .navbar .menu li ul::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  avbar li li:hover {
    border-left: unset !important;
  }
  .navbar li li {
    border-bottom: 0;
    padding: 10px 10px 10px 20px;
    position: relative;
    color: #7f91a1;
  }
  .navbar li li::before {
    position: absolute;
    top: 20px;
    left: 0px;
    width: 15px;
    height: 100%;
    content: "";
    border-top: 1px solid #ffffff22;
  }
  .navbar li li::after {
    position: absolute;
    top: 18px;
    left: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content: "";
    background: #616161dc;
  }
}

@media (min-width: 768px) {
  .navbar .menu li:hover > label i {
    transform: rotate(180deg);
  }
}

.footer {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #2d3a4a;
  position: relative;
  margin-top: 2%;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* WhatsApp Floating Button */

.whatsapp-expand-btn {
  position: fixed;
  bottom: 20px;
  right: 2vw;
  background-color: #00b309ff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 6px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 55px;
  overflow: hidden;
  border: 2px solid #fff;
}

.whatsapp-expand-btn .whatsapp-icon {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-expand-btn span {
  margin-left: 12px;
  white-space: nowrap;
  opacity: 0;
  color: #fff;
  transition: opacity 0.3s ease 0.1s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.whatsapp-expand-btn:hover {
  width: 170px;
  background-color: #196626;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-expand-btn:hover span {
  opacity: 1;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  padding: 1vw 0;
  width: 95vw;
  margin: 0 auto;
}

.footer-box {
  flex: 1;
  min-width: 200px;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-box h3 {
  margin-bottom: 15px;
  color: #2d3a4a;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

.footer-box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #0056b3, #2dd4bf);
  border-radius: 2px;
}

.footer-box a {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #000000ff;
  text-decoration: none;
  transition: all 0.5s ease;
  padding: 0px 0;
}

.footer-box a:hover {
  color: #0056b3;
  transform: translateX(10px);
  transition: all 0.5s ease;
}

.footer-box a i {
  margin-right: 10px;
  color: #0056b3;
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
}

.flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.flags img {
  width: 32px;
  height: 22px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  object-fit: cover;
}

.flags img:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-box select {
  margin-top: 10px;
  padding: 8px 12px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.8);
  color: #2d3a4a;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-box select:focus {
  outline: none;
  border-color: #0056b3;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #3a4a5a;
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .footer-info {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .footer-box {
    min-width: 100%;
  }

  .whatsapp-expand-btn {
    right: 20px;
    bottom: 15px;
  }
}
