
@font-face {
  font-family: 'JaneAust';
  src: url('styles/fonts/JaneAust.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1 {
  font-family: 'JaneAust', var(--site-font), Arial, Helvetica, sans-serif !important;
}

/* SALE spotlight section (homepage) */
.sale-spotlight {
  background: #fff;
  padding: 5.5rem 0;
}

.sale-spotlight__title {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin: 0;
}

.sale-spotlight__subtitle {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0;
}

.sale-spotlight__actions {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}

@media (max-width: 575.98px) {
  .sale-spotlight {
    padding: 4rem 0;
  }

  .sale-spotlight__actions {
    max-width: 420px;
  }
}

/* Responsive height for image/text cards in two-rows */
.two-rows .img-item, .two-rows .text-item {
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
}
.two-rows .img-fit {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
}
@media (min-width: 768px) {
  .two-rows .img-item, .two-rows .text-item {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
  }
  .two-rows .img-fit {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
    width: 100% !important;
  }
}
/* optional: dim image when hovered */
.two-rows .img-item:hover .img-fit {
  filter: brightness(.7);
  transform: scale(1.02);
  transition: transform .35s ease, filter .25s ease;
}

/* Window rows */

.three-rows .img-item {
  overflow: hidden;
  height: 400px; /* desktop/tablet row height */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.three-rows .img-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* View All button: hidden by default, shown on hover as transparent button with border */
.three-rows .img-item {
  position: relative;
  overflow: hidden;
}

/* button hidden by default */
.three-rows .img-item .view-all {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(8px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: #fff;
  padding: .45rem 1rem;
  text-decoration: none;
  z-index: 3;
  font-weight: 600;
}

/* reveal on hover/focus of the container */
.three-rows .img-item:hover .view-all,
.three-rows .img-item:focus-within .view-all {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateY(0);
}

/* optional: dim image when hovered */
.three-rows .img-item:hover .img-fit {
  filter: brightness(.7);
  transform: scale(1.02);
  transition: transform .35s ease, filter .25s ease;
}

/* ensure button is readable on darker images — white variant */
.three-rowss .img-item .view-all.light {
  border-color: rgba(255,255,255,0.95);
  color: #fff;
}

#reviewCarousel .carousel-control-prev,
#reviewCarousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  opacity: 1;
  z-index: 2;
}

#reviewCarousel .carousel-control-prev-icon,
#reviewCarousel .carousel-control-next-icon {
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(1) brightness(2);
}

/* Homepage banner hero */
.home-hero {
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Laptop/Desktop: fill the row with the banner image */
@media (min-width: 992px) {
  .home-hero {
    background-size: cover;
    background-color: transparent;
  }
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 0;
}

.home-hero__inner {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 992px) {
  .home-hero__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.home-hero__content {
  max-width: 520px;
}

/* Centered hero content card (off-white translucent background) */
.home-hero__content-card {
  width: 100%;
  max-width: 720px;
}

.home-hero__content-card .home-hero__title,
.home-hero__content-card .home-hero__subtitle {
  color: #111;
  text-shadow: none;
}

.home-hero__title {
  color: #fff;
  margin: 0 0 .35rem 0;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.home-hero__subtitle {
  color: rgba(255,255,255,0.92);
  margin: 0 0 1.15rem 0;
  font-size: 1.05rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.home-hero__bottom {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  text-align: center;
  padding: .9rem 1rem;
  font-size: .95rem;
}

@media (max-width: 991.98px) {
  .home-hero {
    min-height: 420px;
  }

  .home-hero__title {
    font-size: 2.15rem;
  }
}

@media (max-width: 767.98px) {
  .home-hero {
    min-height: 620px;
  }
}

@media (max-width: 575.98px) {
  .home-hero {
    min-height: 620px;
  }

  .home-hero__title {
    font-size: 1.9rem;
  }

  .home-hero__subtitle {
    font-size: 1rem;
  }
}

/* Full-width banner under main */
.full-banner {
  background: #000;              /* black background */
  color: #ff2b2b;                /* red text */
  width: 100%;
  box-sizing: border-box;
  padding: 1.25rem 1rem;         /* vertical + small horizontal padding */
  text-align: center;
  margin: 0;                     /* ensure no gaps */
  overflow: hidden;
}

.full-banner .banner-quote {
  margin: 0;
  color: #ff2b2b;
  font-weight: 150;
  line-height: 1.25;
  font-size: 1.05rem;            /* mobile base */
}

  #reviewCarousel .carousel-inner {
    transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  }
  #reviewCarousel .card {
    border-radius: 18px;
    background: #f7f8fa;
    border: none;
  }
  #reviewCarousel .carousel-indicators [data-bs-target] {
    background-color: #4285F4;
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }




