@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/css/bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");

:root {
  --bs-primary: #009a1a;
  --bs-primary-rgb: 0, 154, 26;
  --bs-primary-dark: #01630e;
  --bs-secondary: #3b3b3b;
  --bs-secondary-dark: #000000;
  --bs-accent: #ad1055;
  --bs-accent-dark: #7f0339;
}

body {
  font-family: "Inter", sans-serif;
  font-size: .85rem;
}

.brand-logo-wrapper {
  width: 110px;
  height: 30px;
}

.brand-logo {
  max-width: 110px;
}

a:hover {
  color: var(--bs-primary);
}

.nav-link {
  text-decoration: none;
  font-weight: 400;
  color: var(--bs-white);
  border-radius: 3px;
  /* margin: 0.3rem 0.1rem; */
  padding: 0.4rem 1.5rem 0.5rem !important;
  line-height: normal;
}

.navbar {
  background: var(--bs-secondary);
}
.menu .nav-link:hover, 
.menu .nav-link:focus, 
.menu .active .nav-link {
  background: var(--bs-accent);
}

.hero .btn-lg {
  font-size: 0.9375rem;
  padding: 14px 30px;
  text-align: center;
  font-weight: 500;
  border-radius: 4px;
  line-height: normal;
}

.hero .fill-blue {
  fill: var(--bs-primary);
}

.hero .fill-green {
  fill: var(--bs-green);
}

.text-primary {
  color: var(--bs-primary) !important;
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary-dark);
  --bs-btn-hover-bg: var(--bs-primary-dark);
}

.btn-secondary {
  --bs-btn-bg: var(--bs-secondary);
  --bs-btn-border-color: var(--bs-secondary-dark);
  --bs-btn-hover-bg: var(--bs-secondary-dark);
}

.hero-art {
  top: 0px;
  left: 0;
}

.h-100vh {
  height: calc(100vh - 122px);
}

.txt-h-effect {
  overflow: hidden;
  position: relative;
  display: inline-box;
  display: -webkit-inline-box;
}

.txt-h-effect::before,
.txt-h-effect::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
}

.txt-h-effect::before {
  background-color: var(--bs-secondary);
  height: 2px;
  bottom: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.txt-h-effect::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(200%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  color: var(--bs-secondary);
}

.txt-h-effect:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.txt-h-effect:hover::after {
  transform: translate3d(0, 0, 0);
}

.txt-h-effect span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.txt-h-effect:hover span {
  transform: translate3d(-200%, 0, 0);
}

.cart-item-img {
  max-width: 80px;
}

.cart-item {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  object-fit: cover;
  transition: transform 400ms;
}

.image-wrapper img:hover {
  transform: scale(1.1);
}

.image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.image-hover:hover {
  opacity: 1;
}

.mn-10 {
  margin-top: -10px;
}

.sr-icon {
  top: 6px;
  left: 13px;
}

.ps-4-5 {
  padding-left: 35px;
}

.gradient-hero {
  background: radial-gradient(116.18% 118% at 50% 100%, rgb(97 151 123 / 10%) 0%, rgb(255 255 255 / 5%) 41.83%, rgb(255 255 255 / 10%) 82.52%);
}

.image-on {
  height: 257px;
}

.card {
  transition: box-shadow 100ms;
}

.card:hover {
  box-shadow:  2px 2px 5px #e2e2e2;
  border: 1px solid #b3b3b3;
}

.vertical-align {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

.dropdown-item {
  color: #fff;
  font-size: .8rem;
  padding: 10px;
}

.navbar-nav .dropdown-menu {
  background: var(--bs-accent);
  border-radius: 5px;
  width: 100%;
  padding: 0;
  color: #fff;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: var(--bs-accent-dark);
  color: #fff;
  border-radius: 5px;
}

.bubble {
  border-radius: 50px;
  padding: 3px 8px;
  font-size: 12px;
  color: #fff;
  top: -10px;
  left: -14px;
}


