



/* ===========================
   Product Gallery
=========================== */
.single-product-gallery {
  margin-bottom: 20px;
}
.single-product-item img {
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  width: 100%;
}
.single-product-item img:hover {
  transform: scale(1.05);
}

.single-product-thumb img {
  border-radius: 8px;
  opacity: 0.7;
  transition: all 0.3s;
  width: 100%;
}
.single-product-thumb.swiper-slide-thumb-active img {
  opacity: 1;
  border: 2px solid #ff7a18;
}

/* ===========================
   Product Details
=========================== */
.single-product-details {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.single-product-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}
.single-product-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #555;
}
.product-more-option {
  margin-top: 20px;
}
.product-more-option-item {
  margin-bottom: 10px;
}
.product-more-option-item h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-right: 8px;
  display: inline-block;
}
.product-more-option-item a,
.product-more-option-item span {
  color: #ff7a18;
  font-weight: 500;
}

/* Buy Button */
.buy-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff7a18, #af002d);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  margin-top: 20px;
  transition: 0.3s;
}
.buy-btn:hover {
  background: linear-gradient(135deg, #af002d, #ff7a18);
  transform: translateY(-2px);
}

/* ===========================
   Stylish Tablist
=========================== */
.product-tablist {
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.product-tablist .nav-link {
  position: relative;
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  background: #f7f7f7;
  color: #444;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.product-tablist .nav-link:hover {
  background: #fff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.product-tablist .nav-link.active {
  background: linear-gradient(135deg, #f4a900, #fdd855);
  color: #fff;
  box-shadow: 0 6px 20px rgb(2 32 44 / 6%);
}

/* Underline animation effect */
.product-tablist .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 0;
  height: 3px;
  background: #ff7a18;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.product-tablist .nav-link:hover::after,
.product-tablist .nav-link.active::after {
  width: 50%;
}

/* Content Box */
.product-tab-content {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  margin-top: 25px;
  animation: fadeIn 0.5s ease;
}


/* Stylish yellow dot list */
.content-title ul {
  list-style: none; /* remove default bullets */
  padding: 0;
  margin: 20px 0;
}

.content-title ul li {
  position: relative;
  padding-left: 25px; /* space for custom dot */
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

.content-title ul li:before {
  content: "•";  /* bullet symbol */
  position: absolute;
  left: 0;
  top: 0;
  color: #FFD700; /* yellow (gold) */
  font-size: 1.3rem;
  font-weight: bold; /* make it bold */
}


/* ===========================
   Responsive
=========================== */
@media (max-width: 991px) {
  .single-product-details {
    margin-top: 30px;
  }
  .breadcrumb-wrap {
    padding: 100px 20px 40px;
  }
}
@media (max-width: 575px) {
  .single-product-title h2 {
    font-size: 1.5rem;
  }
  .buy-btn {
    width: 100%;
    text-align: center;
  }
}
