.baro-swiper{
    padding: 10px;
}

.baro-swiper .swiper-footer{
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
}

.baro-swiper .swiper-footer h3{
    margin-top: 20px;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 1.25rem;
}

.baro-swiper .swiper-slide {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .baro-swiper .swiper-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .baro-swiper .slide-content {
    background: #2c4738;
    color: #fff;
    padding: 15px;
    flex: 1;
  }
  .dot-track {
    position: relative;
    width: 100%;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin-top: 20px;
    cursor: pointer;
  }
  .dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #35d64a;
    border-radius: 50%;
    left: 0%;
    transition: left 0.3s ease;
    cursor: grab;
  }
  .dot.dragging {
    transition: none;
    cursor: grabbing;
  }
  
  .baro-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 11px 22px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -.01em;
    background: #57c75a;
    color: #000;
    border: none;
    border-radius: 27px;
    overflow: hidden;
    cursor: pointer;
    transition: color .3s ease-in-out;
    margin-top: 10px;
    text-decoration: none;
    z-index: 0;
  }
  
  .baro-btn span {
    position: relative;
    z-index: 2;
  }
  
  .baro-btn:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: auto;
    margin: auto;
    height: calc(100% + 2px);
    width: 0;
    background: #fff;
    border-radius: 27px;
    transition: width .3s ease-in-out, height .3s ease-in-out;
  }
  
  .baro-btn:hover {
    color: #57c75a;
  }
  
  .baro-btn:hover:before {
    left: 0;
    right: auto;
    width: calc(100% + 2px);
  }


  .baro-btn-secondary {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 11px 22px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -.01em;
    background: #fff;
    color: #57c75a;
    border: none;
    border-radius: 27px;
    overflow: hidden;
    cursor: pointer;
    transition: color .3s ease-in-out;
    margin-top: 10px;
    text-decoration: none;
    z-index: 0;
  }
  
  .baro-btn-secondary span {
    position: relative;
    z-index: 2;
  }
  
  .baro-btn-secondary:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: auto;
    margin: auto;
    height: calc(100% + 2px);
    width: 0;
    background: #57c75a;
    border-radius: 27px;
    transition: width .3s ease-in-out, height .3s ease-in-out;
  }
  
  .baro-btn-secondary:hover {
    color: #fff;
  }
  
  .baro-btn-secondary:hover:before {
    left: 0;
    right: auto;
    width: calc(100% + 2px);
  }

/* Product Functionality Widget Styles */
.baro-product-functionality {
  padding: 20px 0;
}

.functionality-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.functionality-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.functionality-section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.functionality-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.functionality-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.functionality-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #007cba;
}

.functionality-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 124, 186, 0.1);
  border-radius: 50%;
  font-size: 24px;
  color: #007cba;
}

.functionality-content {
  flex: 1;
}

.functionality-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}

.functionality-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .functionality-section-title {
    font-size: 2rem;
  }
  
  .functionality-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .functionality-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .functionality-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .functionality-section-title {
    font-size: 1.8rem;
  }
  
  .functionality-section-description {
    font-size: 1rem;
  }
  
  .functionality-item {
    padding: 15px;
  }
  
  .functionality-title {
    font-size: 1.2rem;
  }
}

/* Product Attributes Slider Styles */
.baro-product-attributes-slider {
  margin: 30px 0;
}

.baro-attributes-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.baro-attributes-slider {
  position: relative;
}

.baro-attr-item {
  background: #fdf8f5;
  padding: 20px;
  border-radius: 8px;
  margin: 0 10px;
  text-align: center;
  transition: all 0.3s ease;
  height: auto;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.baro-attr-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.baro-attr-title {
  color: #b45309;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.baro-attr-desc {
  color: #333;
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slick Slider Custom Styles */
.baro-attributes-slider .slick-prev,
.baro-attributes-slider .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
  background: #007cba;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.baro-attributes-slider .slick-prev:hover,
.baro-attributes-slider .slick-next:hover {
  background: #005a87;
  transform: scale(1.1);
}

.baro-attributes-slider .slick-prev:before,
.baro-attributes-slider .slick-next:before {
  font-size: 18px;
  color: #fff;
  opacity: 1;
}

.baro-attributes-slider .slick-prev {
  left: -20px;
}

.baro-attributes-slider .slick-next {
  right: -20px;
}

.baro-attributes-slider .slick-dots {
  bottom: -40px;
}

.baro-attributes-slider .slick-dots li button:before {
  font-size: 12px;
  color: #007cba;
  opacity: 0.5;
}

.baro-attributes-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #007cba;
}

/* Responsive Design */
@media (max-width: 768px) {
  .baro-attributes-section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .baro-attr-item {
    padding: 15px;
    margin: 0 5px;
    min-height: 100px;
  }
  
  .baro-attr-title {
    font-size: 16px;
  }
  
  .baro-attr-desc {
    font-size: 13px;
  }
  
  .baro-attributes-slider .slick-prev,
  .baro-attributes-slider .slick-next {
    width: 35px;
    height: 35px;
  }
  
  .baro-attributes-slider .slick-prev {
    left: -15px;
  }
  
  .baro-attributes-slider .slick-next {
    right: -15px;
  }
}

@media (max-width: 480px) {
  .baro-attributes-section-title {
    font-size: 1.3rem;
  }
  
  .baro-attr-item {
    padding: 12px;
    margin: 0 3px;
    min-height: 90px;
  }
  
  .baro-attr-title {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .baro-attr-desc {
    font-size: 12px;
  }
}
