.custom-sale-slider {
  width: 100%;
  padding: 2rem 0;
  position: relative;
}

.slide-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 14px #b3a473;
} */

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.sale-ribbon {
  position: absolute;
  top: 10px;
  left: -28px;
  background: red;
  color: #fff;
  padding: 5px 40px;
  transform: rotate(-45deg);
  font-size: 15px;
  font-weight: bold;
}

.card-content {
  padding: 0.5rem;
}

.item-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.swiper-wrapper {
 
    padding: 10px 0px !important;
}
.swiper-button-next, .swiper-button-prev {
color:red !important;
}

.swiper-button-next:hover {
color:#000 !important;
}

 .swiper-button-prev:hover {
color:#000 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: red !important;
}
.item-dimensions,
.item-price {
  font-size: 0.95rem;
  margin: 0.2rem 0;
}

/* Swiper navigation arrows */
.swiper-button-prev,
.swiper-button-next {
  color: red;
  transition: color 0.3s ease, transform 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #000;
  transform: scale(1.1);
}

/* Pagination dots */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #b3a473;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .slide-card {
    max-width: 100%;
    margin: 0 auto;
  }
}


////////

.video-hero-wrapper-- {
  position: relative;
  height: 65vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
min-width:600px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.title-for-home-header{ 
  margin-bottom:0px  !important; 
  font-size:100px !important;
}

@media only screen and (max-width: 768px) {
  .item-name{
    font-size:20px !important;
  }
.title-for-home-header{ 
  margin-bottom:0px  !important;
  font-size:60px  !important;
}
  .hero-content {
  position: relative;
  z-index: 1;
min-width:300px;
}
  .video-hero-wrapper {
 
  height: 40vh;
 
}
}

@media only screen and (max-width: 768px) {
    .video-hero-wrapper-- {
        height: 130vh;
    }
}

/* CSS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* three equal columns */
  gap: 1rem;
  align-items: start;
}

/* optional card styling */
.grid-3 .card {
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
}

/* Collapse to 1 column at 600px and below */
@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr; /* single column */
  }
}
