/* ===== SECTION ===== */
.product-detail {
  padding: 50px 0;
}

/* ===== LEFT SLIDER ===== */
.product-slider {
  border: 1px solid #eee;
  padding: 20px;
}

.main-img img {
  width: 100%;
}

/* THUMBNAILS */
.thumb-list {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.thumb-list img {
  width: 70px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.thumb-list img.active {
  border: 2px solid #f4c150;
}

/* ===== RIGHT SIDE ===== */
.product-info h2 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--font-03);
  margin: 0;
}

.product-info p {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
  font-family: var(--font-02);
}
.product-info span {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 300 !important;
  font-family: var(--font-02);
}
.product-info b, .product-info strong {
  font-weight: 600;
}
.price {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
}
.add-cart:hover {
  background: #000;
  color: #fff;
}
/* QUANTITY + BUTTON */
.cart-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.cart-row input {
  width: 60px;
  padding: 10px 5px;
}

.add-cart {
  background: #f4c150;
  border: none;
  padding: 12px 15px;
  font-weight: 600;
  color: #fff;
}

/* FEATURES */
.features {
  margin-top: 20px;
}

.features li {
  margin-bottom: 5px;
}
.product-category span {
  font-family: var(--font-02);
}

.product-detail-btn-wapper {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 0;
  margin: 0;
}
.product-detail-btn-wapper li {
  list-style: none;
}
.back-btn {
  background: #000;
  padding: 5px 15px;
  font-size: 15px;
  color: #fff;
  border-radius: 2px;
}

.product-detail-btn-wapper li a {
  padding: 13.5px 15px;
}
.product_nav ul .prev a, .product_nav ul .next a {
  background: var(--color-1);
  border-radius: 3px;
  color: #ffffff;
  display: block;
  font-size: 15px;
  height: 30px;
  width: 30px;
  line-height: 28px;
  text-align: center;
}
.product_nav {
  float: right;
  position: relative;
  top: 0px;
}
.product_nav ul li {
  display: inline-block;
  margin-left: 3px;
}
.product_nav ul li:first-child {
  margin-left: 0;
}
.product_nav ul li {
  display: inline-block;
  margin-left: 3px;
}
.product-info {
  position: relative;
}
/* WISHLIST */
.wishlist {
  color: var(--color-1);
  display: inline-block;
  background: #fff;
  border: 1px solid var(--color-1);
  padding: 5px 15px;
}
.product_nav ul li a:hover {
  background: #000;
  color: var(--color-1);
}
/* ===== SECTION ===== */
.product-review {
  padding: 50px 0;
  font-family: Arial;
}

.review-box {
  border: 1px solid #eee;
  padding: 30px;
}

/* TITLE */
.review-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.review-line {
  height: 1px;
  background: #ddd;
  margin-bottom: 25px;
}

/* TEXT */
.review-box h4 {
  margin-bottom: 20px;
}

.review-box p {
  margin-bottom: 15px;
}

/* STAR */
.star-rating i {
  font-size: 18px;
  cursor: pointer;
  margin-right: 5px;
  color: #ccc;
  transition: 0.3s;
}

.star-rating i.active,
.star-rating i.hover {
  color: #f4c150;
}

/* TEXTAREA */
.review-box textarea {
  width: 100%;
  height: 120px;
  border: 1px solid #ddd;
  padding: 10px;
  resize: none;
}

/* BUTTON */
.review-btn {
  margin-top: 20px;
  background: #2d333b;
  color: #fff;
  padding: 8px 20px;
  border: none;
}
.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    border:none;
    cursor:pointer;
    z-index:2;
    border-radius:50%;
    font-size:20px;
}

.prev-btn{
    left:15px;
}

.next-btn{
    right:15px;
}

.thumb-list{
    display:flex;
    gap:10px;
    margin-top:15px;
    flex-wrap:wrap;
}

.thumb-image{
    width:80px;
    height:80px;
    object-fit:cover;
    cursor:pointer;
    border:2px solid #ddd;
    border-radius:8px;
}

.thumb-image.active{
    border-color:#06b453;
}
.main-img-wrapper{
    position:relative;
    display:flex;
    align-items:center;
}
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 8px 10px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 15px;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}
/* Custom Checkpoint List Styles for Product Pages */
.product-check-list {
  list-style-type: none; /* Removes the default black dots */
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 25px;
}

.product-check-list li {
  position: relative;
  padding-left: 35px; /* Creates space for the custom checkmark */
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #333333; /* Dark text for easy reading */
  font-family: var(--font-02);
}

/* The Custom Checkmark Design */
.product-check-list li::before {
  content: '\2713'; /* Unicode for a checkmark */
  position: absolute;
  left: 0;
  top: 3px; /* Aligns the icon with the first line of text */
  width: 24px;
  height: 24px;
  background-color: var(--color-1); /* A beautiful festive pink. Change this hex code to match your brand color! */
  color: #ffffff; /* White checkmark */
  border-radius: 50%; /* Makes the background a perfect circle */
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 24px; /* Centers the checkmark vertically inside the circle */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Adds a subtle shadow for a 3D effect */
}

/* Optional: Highlight the bold text inside the list to make it pop */
.product-check-list li strong {
  color: #111111; 
}
a{
  color: var(--color-1);
}
.quantity {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.product_nav ul {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
@media(max-width:575px){
  .product-slider {
    padding: 0px;
  }
  .cart-row {
    flex-direction: column;
    align-items: start;
  }
  .product-detail-btn-wapper {
    flex-direction: column;
    align-items: start;
    row-gap: 18px;
  }
  .product-detail {
    padding: 50px 0px 0;
  }
  .services-inner .swiper-pagination-bullet {
    width: 10px;
    height: 9px;
  }
  .product_nav {
    float: inherit;
    position: relative;
    top: 0px;
    padding-top: 20px;
  }
  .product_nav ul {
    padding: 0;
  }
  .home-faq .accordion-item i {
    width: 30px;
    height: 30px;
    line-height: 28px;
    border-radius: 5px;
    background: var(--color-1);
    text-align: center;
    color: #fff;
  }
  .home-faq .accordion-item i {
    line-height: 28px;
  }
  .faq-title {
    padding-right: 10px;
  }
}