@charset "UTF-8";
/* CSS Document */
header#bd-fixed-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      background: #fff;
      border-bottom: 1px solid #ccc;
    }

    .header-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
 
  background: linear-gradient(to right, 
              rgba(220, 245, 250, 0.85) 0%, 
              #ffffff 20%, 
              #ffffff 80%, 
              rgba(220, 245, 250, 0.85) 100%);
}
    
.header-logo img {
      height: 45px;
    }

    .header-row.second {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4em 1em;
  font-size: 0.75em;
  background: linear-gradient(to bottom, #e6f0fa, #dbeaf8);
  box-shadow: 0 0.15em 0.3em rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

/* BBB trust mark */
.trust-mark {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: auto;
}

/* Payment icons */
.payment-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

/* Image sizing */
.trust-mark img {
  height: 20px;
  box-shadow: 0 0 4px 1px orange;
  border-radius: 2px;
}

.payment-icons img {
  height: 16px;
}

/* Optional tighter spacing on smaller devices */
@media (max-width: 420px) {
  .header-row.second {
    padding-left: 0.6em;
    padding-right: 0.6em;
  }

  .trust-mark img {
    height: 16px;
  }

  .payment-icons img {
    height: 14px;
  }
    
    .header-logo img {
      height: 35px;
    }


  .payment-icons {
    gap: 3px;
  }
}
  