.payment_methods svg {
  margin: 4px;
  transition: transform 0.2s ease;
}
.payment_methods svg:hover {
  transform: scale(1.05);
}

.mt-8 {
  margin-top: 2rem;
}

#snackbar {
    visibility: visible;
    max-width: 100%;
    margin: auto;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 8px;
    padding: 14px 20px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    box-shadow: 0px 3px 12px rgba(0,0,0,0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.snackbar-close {
    background: transparent;
    border: none;
    font-size: 20px;
    color: white;
    margin-left: 20px;
    cursor: pointer;
}

.bg-success {
    background-color: #198754 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

#snackbar ul {
    margin: 0;
    padding-left: 1.2em;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height */
  overflow: hidden;
  background: #2E3136;
}

/* Slides are stacked */
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center; 
  display: block;
}

/* Nav arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: none;
  background: rgba(0,0,0,.35);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 26px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
}
.hero-nav:hover { background: rgba(0,0,0,.55); }
.hero-nav.prev { left: 16px; }
.hero-nav.next { right: 16px; }

/* Dots */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  padding: 0;
}
.hero-dots button.is-active { background: #fff; }
@media (min-width: 1920px) {
  .hero-slide img {
    object-fit: contain;
    background-color: #2E3136; 
    object-position: center;
  }
  .hero-slider {
      height: 72vh; 
    }
    .owl-item {
      object-fit: contain;
    }
}