/* ===== SECTION ===== */
.product-detail {
  padding: 50px 0;
  font-family: Arial;
}

/* ===== 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;
  line-height: 1.8;
  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: 15px 0;
}
.add-cart:hover {
  background: #000;
  color: #fff;
}
/* QUANTITY + BUTTON */
.cart-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.cart-row input {
  width: 70px;
  padding: 5px;
}

.add-cart {
  background: #f4c150;
  border: none;
  padding: 10px 25px;
  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: 20px;
  padding: 0;
}
.product-detail-btn-wapper li {
  list-style: none;
}
.back-btn {
  background: #000;
  padding: 8px 15px;
  font-size: 17px;
  color: #fff;
  border-radius: 2px;
}
.product_nav ul li 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: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 20px;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}