
		* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Manrope', sans-serif;
}

.page-container {
  min-height: 80%;
  display: flex;
  flex-direction: column;
}		
		
.page-container > section {
  flex: 1;
}		
		
.filler-section {
  background: #fefefe;
  padding: 6rem 2rem;
  text-align: center;
}

.filler-container {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}
/*
.filler-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #222;
}
*/
.filler-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}



		
.product-highlights {
  background: white;
  padding: 1rem 2rem;
}

.section-heading {
  font-size: 2rem;
  color: #333;
  /* align with the product grid container */
  max-width: 1360px;
  margin: 2rem auto 1rem;   /* centers it */
  padding: 0 1rem;          /* small fluid gutter */
  text-align: left;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* 💥 bump from 200px to 240px */
  gap: 1.5rem;
  max-width: 1360px;
  margin: 0 auto 4rem auto;
}


.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 1.5rem;
  height: 100%; /* Ensures equal height across grid */
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 180px; /* 🔥 slightly shorter */
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.2rem;
  padding: 1rem;
  color: #333;
  min-height: 3.5rem; /* ⬅ ensures consistent title height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-card p {
  font-size: 0.95rem;
  color: #666;
  text-decoration: none;
  margin-top: auto; /* ⬅ pushes to bottom inside flex column */
}

.product-card a {
  text-decoration: none;
}	


/* === Carousel Section Wrapper === */
#carousel-main {
  margin-top: 20px; /* adjust value as needed */
  width: 100%;
  display: flex;
  justify-content: center;
  background: #fff;
}

/* === 1440px Max Container Like Hammacher === */
.carousel-container {
  width: 100%;
  max-width: 1370px;
  padding: 0 1rem;   /* 👈 add breathing room left/right */
  margin: 0 auto;   /* keep it centered */
}


/* === Flex Layout Row === */
.carousel-row {
  display: flex;
  gap: 1rem;           /* 🔥 keep your gap */
  background: #fff;
  overflow: hidden;
  margin-left: 0;      /* reset */
  margin-right: 0;     /* reset */
  align-items: stretch;/* 🔑 make left + right equal height */
  height: auto;        /* 🔑 responsive, no fixed 360px */
}



/* === Left (Slider) === */
.carousel-left {
  flex: 0 0 75%;
  position: relative;
  overflow: visible;
}


/* === Slider Inner === */
.hero-carousel {
  height: 100%;
  position: relative;
}

/* === Each Slide === */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s ease;
  z-index: 0;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}


.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center ; /* 👈 try changing this */
  
}

/* === Arrow Buttons === */
.carousel-arrow {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  width: 38px;
  height: 70px;
  background: rgba(255, 255, 255, 0.3); /* translucent */
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}

.left-arrow {
  left: 0;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.right-arrow {
  right: 0;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}



/* === Dots === */
.carousel-dots {
  position: absolute;
  bottom: 12px;                 /* a little more breathing room than .5rem */
  left: 50%;                    /* anchor to horizontal center */
  transform: translateX(-50%);  /* pull back by half its own width */
  display: flex;
  justify-content: center;
  gap: 10px;
  width: auto;                  /* only as wide as the dots themselves */
  z-index: 3;
}


.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid white;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

/* === Right (Static Tile) === */
.carousel-right {
  flex: 1 1 25%;        /* 🔑 take ~25% of the row, matches left’s 75% */
  border-radius: 12px;
  overflow: hidden;     /* clip child img */
  background: #f9f9f9;
  display: flex;        /* 🔑 ensure child fills full height */
}

.carousel-static-tile {
  flex: 1;              /* fill parent */
  overflow: hidden;
  border-radius: 12px;
}

.carousel-static-tile img {
  width: 99.5%;
  height: 99.5%;
  object-fit: cover;    /* fill column, crop if needed */
  border-radius: 16px;
  display: block;
}


	
/* Add rounded corners to the left (slider) */

.hero-slide img {
  border-radius: 20px;

}









@media (max-width: 1024px) {
  .section-heading {
    text-align: center;
    padding-left: 0;
    font-size: 1.5rem;
  }

  .carousel-right {
    display: none !important;
  }

  .carousel-row {
    height: auto; /* allow it to shrink */
  }

  .carousel-left {
    flex: 1 1 100%;
    max-width: 100%;
    height: auto;
  }

  .hero-carousel {
    position: relative;
    height: 460px; /* 💥 control the height of the visible area */
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
  }

  .hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }

  .hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }

  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 0.4rem;
    border-radius: 30%;
    font-size: 1.2rem;
    border: none;
  }

  .left-arrow {
    left: 0.5rem;
  }

  .right-arrow {
    right: 0.5rem;
  }
	
  .carousel-container {
    padding: 0 .5rem;
  }
	
	.carousel-dots {
    bottom: 5px;              /* was 12px; negative moves it below the slide */
  }
}

