  :root {
    --fbb-megamenu-from: 255 245 245;   /* Deep blue (like Tailwind blue-600) */
    --fbb-megamenu-to: 255 250 255;     /* Darker navy blue (like Tailwind blue-800) */
  }

  /* Dark mode: richer deep blue */
  @media (prefers-color-scheme: dark) {
    :root {
      --fbb-megamenu-from: 0 0 50; /* Bright deep blue */
      --fbb-megamenu-to: 0 31 103;    /* Dark navy blue */
    }
  }
/* src/newtheme/js/apps/gradient-overflow-box/gradient-overflow-box.scss */
.gradient-overflow-box {
  position: relative;
  overflow: hidden;
}
.gradient-overflow-box .gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background:
    linear-gradient(
      to top,
      rgb(255, 255, 255) 0%,
      rgba(255, 255, 255, 0.8) 40%,
      rgba(255, 255, 255, 0.3) 70%,
      rgba(255, 255, 255, 0) 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 16px;
}
.gradient-overflow-box .show-more {
  padding: 8px 20px;
  background:
    linear-gradient(
      135deg,
      #3b82f6 0%,
      #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.gradient-overflow-box .show-more:hover {
  background:
    linear-gradient(
      135deg,
      #2563eb 0%,
      #1e40af 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.gradient-overflow-box .show-more:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Roboto', sans-serif;
}

section#content>.container {
    background-color: white;
}

h1,
h2,
h3,
h4, 
h5,
h6 {
  color:#0A374A;
  font-family: 'Signika', sans-serif;
}

[v-cloak]>* {
    display: none
}

[v-cloak]::before {
    content: "loading…"
}

h1 {}

h2 {}

h3 {}

h4 {
    font-size: 19px;
    line-height: 25px;
}

h5 {}

h6 {}

.btn {
    border-radius: 0px;
}

@media (min-width: 1400px) {
    .container {
        width: 1350px;
    }
}

#cat-nav {
    border-top: 2px solid #e8e8e8;
}

.top-icon-menu img {
    max-height: 40px;
}

.cart-amount {
    color: #fff;
    background-color: green;
    border-radius: 20px;
    padding: 2px 8px;
    position: relative;
    left: -10px;
    top: 5px;
}

.cart-amount.empty {
    background-color: #ccc;
}

.dhl-express-triangle {
    position: absolute;
    right: 0px;
    top: 0px;
    max-height: 100%;
}


