html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/* Video background styles for carousel slide */
.hero-carousel .carousel-item {
    position: relative;
    min-height: 600px; /* adjust as needed */
    overflow: hidden;
}

.hero-carousel .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #000;
}

    /* iframe fills container */
    .hero-carousel .video-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
        pointer-events: none; /* allow carousel controls to work */
    }

.hero-carousel .carousel-caption {
    width: 1150px;
    height: 600px;
    left: 0;
    top: 0;
    background: linear-gradient(100deg, #FF8C30 80%, transparent 50%);
}


/* If you place content over video, ensure it sits above */
.hero-carousel .carousel-caption,
.hero-carousel .carousel-item > .content {
    position: relative;
    z-index: 1;
}

.products-carousel .carousel-item {
    padding: 20px;
}

.category-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.category-card .card-body {
    background-color: var(--light-color);
}

.category-card .card-title {
    color: var(--dark-color);
    font-weight: 600;
}

p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}


a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a {
  color: #0077cc;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Ensure sticky header and navbar appear above page content */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1050;
}
.navbar.sticky-nav {
  position: sticky;
  top: var(--topbar-height, 0);
  z-index: 1040;
}

/* Active nav link indicator */
.navbar .nav-link {
  position: relative;
}

.navbar .nav-link.active {
  color: #FF8C00;
}

.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: #FF8C00;
  border-radius: 3px;
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
