.float-right {
  float: right;
}
.float-left {
  float: left;
}
.ratio-9x16 {
	--ar-aspect-ratio: 100%;
}
@media (min-width: 992px) {
  .w-lg-30 {
    width: 30% !important;
  }
  .w-lg-40 {
    width: 40% !important;
  }
  .w-lg-60 {
    width: 60% !important;
  }
  .w-lg-70 {
    width: 70% !important;
  }
}
.hide-out {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

/* When showing, expand and fade+move */
.make-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  height: auto;
  transition: all 1s ease;
}
.form-control[readonly], .form-control:disabled {
	cursor: not-allowed;
}
.top-header {
	width: 100%;
	background: #222;
	position: relative;
	display: flex;
	justify-content: end;
	padding: 5px 20px;
}

.top-header select {
	font-size: 12px;
	color: #fff;
	padding: 8px;
	border-radius: 5px;
	width: 50px;
  text-transform: capitalize;
}

/* Hero section */
.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
}
.heroSwiper {
	min-height: 100vh;
	height: 100vh;
}

.heroSwiper.swiper-slide {
  /* height: 100vh; */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroSwiper .slide-overlay {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.heroSwiper .slide-content {
  text-align: center;
  color: #fff;
  max-width: 90%;
}

.slide-content h1, .slide-content p {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.42) !important;
	color: #fff;
}

.heroSwiper .lead-text {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.heroSwiper .subtext {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.heroSwiper .action-btn {
  display: inline-block;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  background: #00bcd4;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.heroSwiper .action-btn:hover {
  background: #0097a7;
}

/* Medium devices (tablets) */
@media (min-width: 768px) {
  .heroSwiper .lead-text {
    font-size: 2.5rem;
  }

  .heroSwiper .subtext {
    font-size: 1.2rem;
  }

  .heroSwiper .action-btn {
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
  }
}

/* Large devices (desktops) */
@media (min-width: 992px) {
  .heroSwiper .lead-text {
    font-size: 3rem;
  }

  .heroSwiper .subtext {
    font-size: 1.3rem;
  }

  .heroSwiper .slide-content {
    max-width: 700px;
  }
}

@media (min-width: 1200px) {
  /* .ms-xl-3 {
    margin-left: 1rem !important;
  } */
}

#navbarNav ul .nav-link {
	font-weight: normal !important;
	font-size: 0.875rem !important;
}

/* Product Gallery Styling */
#product-gallery {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

#product-gallery .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Thumbnail Styling */
#thumbnails {
    margin-top: 15px;
}

#thumbnails .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

#thumbnails .swiper-slide:hover {
    opacity: 0.8;
    border-color: #37715d;
}

#thumbnails .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #37715d;
    box-shadow: 0 0 10px rgba(20, 145, 118, 0.3);
}

#thumbnails .swiper-slide img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

/* Quantity Input Styling */
.count-input {
    display: flex;
    align-items: center;
    min-width: 140px;
}

.count-input .form-control {
	text-align: center;
	border: none;
	background: transparent;
	border-radius: 0;
	font-weight: normal;
	min-width: 5px;
	margin: 0 5px;
	font-size: .85rem;
}

.count-input .btn {
    border-radius: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.count-input .btn:disabled,
.count-input .btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    border: none;
}
.cart-item .name {
  font-size: .85rem;
  font-weight: normal;
}
 .cart-item .content {
  padding-left: 8px;
}
.cart-item .options {
  font-size: 0.64rem;
  display: flex;
  flex-wrap: wrap;
}
.cart-item .remove-from-cart {
	position: relative;
	left: 145px;
	top: 0px;
	font-size: .85rem !important;
}

@media screen and (max-width: 578px) {
  .cart-item a img {
    width: 50px;
  }
  .cart-item .name {
    font-size: .75rem;
  }
  .cart-item .options {
    font-size: 0.6rem;
  }
  .count-input input {
    font-size: .8rem !important;
  }
  .count-input .btn {
    width: 20px;
    height: 30px;
  }

  .cart-item .remove-from-cart {
    right: 0px;
    top: 0px;
    font-size: .75rem !important;
  }
}
