/* FULLBANNER */
.fullbanner {
  position: relative;
  overflow: hidden;
  height: 580px;
  min-height: 420px;
}

/* SLIDE */
.fullbanner__slide {
  position: relative;
  width: 100%;
  height: 100%;
}

/* IMAGE */
.fullbanner__image {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  object-fit: cover;
}

.fullbanner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.fullbanner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

/* CONTAINER (standard wrapper pattern) */
.fullbanner__container {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  right: 0;
  padding: 48px var(--container-padding);
  display: flex;
  align-items: center;
}

/* CONTENT */
.fullbanner__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

/* TITLE */
.fullbanner__title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}

/* TEXT */
.fullbanner__text {
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.fullbanner__cta {
  display: inline-block;
  width: fit-content;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  background: #006492;
  color: #fff;
  text-decoration: none;
  transition: background .3s ease, transform .3s ease;
  margin-top: 4px;
}

.fullbanner__cta:hover {
  background: #009DE4;
  color: #fff;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .fullbanner__container {
    padding: 40px var(--container-padding);
  }

  .fullbanner__content {
    max-width: 460px;
  }

  .fullbanner__title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .fullbanner__overlay {
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
  }

  .fullbanner__container {
    padding: 24px var(--container-padding);
    padding-bottom: var(--space-3xl);
    align-items: flex-end;
  }

  .fullbanner__content {
    max-width: 100%;
  }

  .fullbanner__title {
    font-size: 1.4rem;
  }

  .fullbanner__text {
    font-size: 0.9rem;
  }

  .fullbanner__cta {
    text-align: center;
  }
}

/* SLIDE LINK (clickable wrapper for category banners) */
.fullbanner__slide-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* NAVIGATION ARROWS */
.fullbanner__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: background 0.2s;
}

.fullbanner__nav:hover {
  background: #fff;
}

.fullbanner__nav--prev {
  left: 20px;
}

.fullbanner__nav--next {
  right: 20px;
}

/* PAGINATION (white pill container) */
.fullbanner__pagination {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fullbanner__pagination .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  gap: 8px;
}

.fullbanner__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 !important;
  transition: background 0.2s;
}

.fullbanner__pagination .swiper-pagination-bullet-active {
  background: #006492;
}

/* RESPONSIVE — arrows + pagination */
@media (max-width: 768px) {
  .fullbanner__nav {
    width: 36px;
    height: 36px;
    top: 35%;
  }

  .fullbanner__nav--prev {
    left: 12px;
  }

  .fullbanner__nav--next {
    right: 12px;
  }

  .fullbanner__pagination {
    bottom: 16px;
    padding: 6px 12px;
  }

  .fullbanner__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}