/* ===== Fresh Carousel Styles ===== */

.fresh-carousel-root {
  width: 100%;
  max-width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
  
  box-sizing: border-box;
}

/* Track */
.fresh-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

/* Each Slide */
.fresh-slide {
  min-width: 100%;
  min-height: auto;
  object-fit: cover;
  display: block;
}

/* Navigation Buttons */
.fresh-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fresh-prev {
  left: 15px;
}

.fresh-next {
  right: 15px;
}

/* Button Hover */
.fresh-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .fresh-carousel-root {
    height: 240px;
  }

  .fresh-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ===== Bee Yes FAQ Styles ===== */

/* ===== Bee Yes FAQ Section ===== */

.bys-faq-wrapper {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 16px;
  font-family: Arial, sans-serif;
}

.bys-faq-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #222;
}

/* Grid */
.bys-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Column */
.bys-faq-col {
  width: 100%;
}

/* Item */
.bys-faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 12px;
}

/* Question */
.bys-faq-q {
  width: 100%;
  background: #f7f7f7;
  border: none;
  padding: 14px 18px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.bys-faq-q::after {
  content: "+";
  position: absolute;
  right: 18px;
  font-size: 20px;
}

.bys-faq-q.active::after {
  content: "-";
}

/* Answer */
.bys-faq-a {
  display: none;
  padding: 14px 18px;
  background: #fff;
  color: #555;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .bys-faq-grid {
    grid-template-columns: 1fr;
  }

  .bys-faq-heading {
    font-size: 22px;
  }
}

/* ===== Header Logo Fix ===== */

