html {
  font: 16px;
}

.accordion .card-header .dynamic-icon::after,
.accordion .card-header.collapsed .dynamic-icon::after {
  content: " " !important;
  color: #000;
}
.marker {
  color: red;
}

.show-on-mobile,
.block-on-mobile {
  display: none !important;
}

.show-filters {
  display: none;
}
.flex-center {
  justify-content: center;
}

.any-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

#mobileSearchBox {
  width: 18%;
}

@media (min-width: 300px) and (max-width: 800px) {
  .nav-link {
    font-size: 0.7rem;
  }
  #mobileSearchBox {
    width: 100%;
  }

  .h1-responsive {
    font-size: 2rem !important;
  }

  .show-filters {
    display: block;
  }

  #filterRowContainer {
    padding-top: 15vh;
    padding-bottom: 5vh;
    position: fixed;
    left: -100%;
    width: 100vw;
    height: 100vh;
    transition: 0.5s linear;
    z-index: 9;
    background-color: white;
    top: 0;
    overflow: scroll;
  }

  #filterRowContainer.showFilters {
    left: 0%;
    transition: 0.5s linear;
  }

  .show-filters {
    z-index: 10;
    position: fixed;
    right: 0;
    justify-content: center;
    padding: 0;
    padding: 8px;
    outline: none;
    box-shadow: none;
    border: none;
    text-align: center;
    border-radius: 0.4em 0 0 0.4em;
    text-transform: uppercase;
    font-weight: bold;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .show-on-mobile {
    display: flex !important;
  }

  .block-on-mobile {
    display: block !important;
  }

  #mobileSearchBox {
    display: none;
    margin: 0 !important;
    width: 100%;
  }

  .gallery-slider .swiper-slide img {
    height: auto !important;
    width: 100% !important;
  }

  .gallery-thumbs .swiper-slide img {
    height: auto !important;
    width: 100% !important;
  }
}

.selector {
  opacity: 0;
}

.selector {
  position: absolute;
  right: calc(1em + 2px);
  top: calc(1em + 2px);
  background: #fff;
  border: 2px solid #e2ebf6;
  border-radius: 50%;
  cursor: pointer;
  height: 1.5em;
  width: 30em;
  /* width: 1.5em; */
}

.selector::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.375rem;
  height: 0.75rem;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
}

.selector:checked {
  background: #ccc121;
  border-color: #ccc121;
}

.plan-details {
  border: 2px solid #e2ebf6;
  border-radius: 0.5em;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 1em;
}

.selector:checked ~ .plan-details {
  border-color: #ccc121;
}

.selector:focus ~ .plan-details {
  box-shadow: 0 0 0 2px #c4d1e1;
}

.selector:disabled ~ .plan-details {
  color: #c4d1e1;
  cursor: default;
}

.selector:disabled ~ .plan-details .plan-type {
  color: #c4d1e1;
}

.plan-type {
  color: #222222;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1em;
}

.carousel-caption-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.ellipsis-after-two-lines {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ellipsis-after-one-lines {
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-my-float {
  margin-top: 16px;
}

.moving-tape p {
  margin-bottom: 0 !important;
  padding-bottom: 1.3px;
}

.moving-tape {
  border-top: 0px solid white;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background-color: #ffc30f;
}

.moving-items {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: moving-items 40s linear infinite;
}
.moving-logos.moving-items span {
  padding-right: 0px !important;
}
.moving-logos.moving-items {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: moving-items 80s linear infinite;
}

.moving-tape span {
  display: inline-block;
  padding-right: 50px;
  font-size: 14px;
  color: #333;
}

@keyframes moving-items {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}
#moving-tape-1 {
  background: #ffc30f; /* mustard yellow */
}

#moving-tape-1 .moving-items {
  animation: text-left 30s linear infinite;
}

/* Tape 2 - plain mustard background */
#moving-tape-2 {
  background: #ffc30f; /* mustard yellow */
}

#moving-tape-2 .moving-items {
  animation: text-right 30s linear infinite;
}

/* Stripe movement */
@keyframes stripes-left {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}

@keyframes stripes-right {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -40px 0;
  }
}

/* Text movement */
@keyframes text-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes text-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.clearfix {
  display: block;
  clear: both;
  content: "";
}

@media (min-width: 300px) and (max-width: 600px) {
  .products-mobile {
    border: 1px solid #eeeeee;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }
  .products-mobile .ellipsis-after-two-lines {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .products-mobile .card-footer {
    text-align: left !important;
    padding: 0 !important;
    border-top: 0 !important;
  }
  .products-mobile .card-body {
    padding-right: 0 !important;
    padding-left: 8px !important;
  }
  .products-mobile .card-title {
    margin-bottom: 0 !important;
  }
}
/*
.main-footer,
.main-header.header-light .sticky-area-wrap.sticky .sticky-area {
   background-image: url(../assets/images/supportive/backdrop.jpg) !important; 
}
  */

.main-header.header-light .sticky-area-wrap.sticky .sticky-area {
  background-color: #0a0a0a !important;
}

.primary-yellow {
  background-color: #f5df64 !important;
}
.text-primary-yellow {
  color: #f5df64 !important;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    2px 1px 0 #000;
}
.category-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}
.category-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Extra vertical spacing for mobile only */
@media (max-width: 576px) {
  .col-6 {
    margin-bottom: 1rem;
  }
}
footer.main-footer {
  position: relative;
  overflow: hidden; /* keeps rotated tapes from spilling out visually */
}

#moving-tape-1,
#moving-tape-2 {
  position: absolute;
  left: -50%;
  width: 200%;
}

/* Individual rotations */
#moving-tape-1 {
  top: 20%;
  transform: rotate(-25deg);
}

#moving-tape-2 {
  top: 2%;
  transform: rotate(25deg);
}

@media (max-width: 1199.98px) {
  .header-style-02.header-light .nav-link,
  .header-style-03.header-light .nav-link,
  .header-style-05.header-light .nav-link {
    font-family: "work sans", sans-serif;
    color: #000000 !important;
    padding-left: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 768px) {
  .instagram-ratio {
    aspect-ratio: 5 / 5;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .instagram-ratio[style*="height"] {
    height: auto !important;
  }
}

.league-gothic-italic-caps {
  font-family: "League Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "wdth" 100;
  text-transform: uppercase;
}

.separator {
  width: 5px;
  height: 100%;
  background-color: #222222;
}

.equal-gutters {
  padding-left: calc(var(--bs-gutter-x, 1.5rem) / 2);
  padding-right: calc(var(--bs-gutter-x, 1.5rem) / 2);
}

/* Optional: keep thumbnails tidy */
.category-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}
/* Default: keep a clean 16:9 on larger screens */
.yt-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

/* Force a specific height on smaller screens (stacked cols) */
@media (max-width: 991.98px) {
  /* below Bootstrap lg */
  .yt-embed {
    aspect-ratio: auto;
    height: 220px;
  }
}
@media (max-width: 575.98px) {
  /* very small phones */
  .yt-embed {
    height: 200px;
  }
}

/* Base: off-canvas hidden state (applies to small screens by default) */
#navbar-main-menu {
  position: fixed;
  top: 0;
  left: 0; /* anchor at left so transitions look smooth */
  height: 100vh;
  width: 80vw; /* default small-screen width */
  max-width: 420px; /* optional cap */
  padding-top: 5vh;
  background-color: red;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  transform: translateX(-100%); /* hidden off-canvas */
  transition: transform 0.5s ease; /* animate only transform */
  display: block !important; /* keep DOM flow unchanged */
  z-index: 1050000;
  overflow-y: auto; /* scroll if content is tall */
  -webkit-overflow-scrolling: touch;
  will-change: transform;
}

/* Visible state */
#navbar-main-menu.showNow {
  transform: translateX(0);
}

/* Tablet: give a bit more width */
@media (min-width: 576px) and (max-width: 991.98px) {
  #navbar-main-menu {
    width: 70vw;
  }
}

/* Desktop and up: behave like a normal inline menu (no off-canvas) */
@media (min-width: 992px) {
  #navbar-main-menu {
    position: static;
    height: auto;
    width: auto;
    max-width: none;
    padding-top: 0;
    background-color: transparent;
    box-shadow: none;
    transform: none; /* no slide animation on desktop */
    transition: none;
    overflow: visible;
  }
  #navbar-main-menu.showNow {
    transform: none;
  }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  #navbar-main-menu {
    transition: none;
  }
}

.btn-outline-dark:hover {
  color: unset;
  background-color: #f8cd17 !important;
  border-color: #f8cd17 !important;
}

#reviewsSwiper .swiper-slide {
  height: auto;
}
#reviewsSwiper .card {
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
#reviewsSwiper .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#reviewsSwiper .card-body img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

#reviewsSwiper .swiper-pagination {
  white-space: nowrap;
}
#reviewsSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px;
}
#reviewsSwiper .swiper-pagination-bullets-dynamic {
  overflow: hidden; /* clip far bullets when animating */
}

/* Add this to break out of .container and go full viewport width */
.reels-wrap {
  /* width: 100vw; */
  /* margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw); */
}

/* Slick container */
#reelsTrack.slick-slider {
  margin: 0;
}

/* Show a bit of the sides on mobile; center nicely */
#reelsTrack .slick-list {
  overflow: hidden; /* let the active reel breathe */
  padding: 0; /* matches your old padding */
}

/* Spacing between slides */
#reelsTrack .slick-slide {
  padding: 0 8px;
}

/* Reel card width feel on mobile (when slidesToShow:1 + centerMode) */
@media (max-width: 575.98px) {
  #reelsTrack .slick-slide {
    padding: 0 6px;
  }
}
#reelsTrack .slick-track {
  display: flex !important;
  justify-content: center; /* center slides */
}
#reelsTrack .slick-slide {
  float: none; /* override slick’s default float */
  height: auto; /* let reels keep aspect ratio */
}
/* Dots: style the Slick dots inside your external container */
#reelsDots ul.slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 6px;
  padding: 6px 0 2px;
  margin: 0;
}
#reelsDots .slick-dots li {
  width: 6px;
  height: 6px;
}
#reelsDots .slick-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9c9c9;
  opacity: 0.6;
  font-size: 0;
}
#reelsDots .slick-dots .slick-active button {
  opacity: 1;
  background: #333;
}

/* Reel frame (kept) */
.reel {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.reel .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.35)
  );
  pointer-events: none;
}
.reel .controls {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.reel button.ctrl {
  border: 0;
  padding: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
}
.reel .play-indicator {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 42px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.reel.paused .play-indicator {
  opacity: 0.9;
}

#main_carousel {
  padding-top: 5.8rem;
}
#main_carousel .slick-slide {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
@media (min-width: 300px) and (max-width: 800px) {
  #main_carousel {
    padding-top: 2.9rem;
  }
  #main_carousel .slick-slide {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}
