*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#f7f4ee;
  font-family:'Poppins',sans-serif;
  color:#222;
}

/* PAGE */

.product-page{
  width:min(1180px,95%);
  margin:auto;
  padding:30px 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

/* LEFT */

.product-gallery{
  position:relative;
}

.badge{
  position:absolute;
  top:15px;
  left:15px;
  background:#0f4a35;
  color:#fff;
  padding:8px 14px;
  border-radius:8px;
  font-size:12px;
  font-weight:600;
}

.main-image{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:22px;
  display:block;
}

.thumb-gallery{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.thumb-gallery img{
  width:60px;
  height:60px;
  border-radius:10px;
  object-fit:cover;
  border:2px solid #d4af37;
  cursor:pointer;
}

/* RIGHT */

.product-info h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.8rem,5vw,4.5rem);
  line-height:.9;
  margin-bottom:10px;
}

.product-info h1 span{
  color:#c89b3c;
}

.description{
  color:#666;
  font-size:15px;
  line-height:1.6;
  margin-bottom:15px;
}

.reviews{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-bottom:15px;
}

.verified{
  background:#edf7ec;
  color:#2f7d32;
  padding:5px 10px;
  border-radius:6px;
  font-size:12px;
}

.price-box{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:10px;
}

.new-price{
  font-size:clamp(2rem,4vw,3.8rem);
  font-weight:700;
}

.old-price{
  color:#888;
  text-decoration:line-through;
  font-size:clamp(1rem,2vw,1.6rem);
}

.discount-tag{
  background:#edf7ec;
  color:#2f7d32;
  padding:5px 10px;
  border-radius:6px;
  font-size:12px;
}

.tax-info{
  color:#777;
  font-size:14px;
  margin-bottom:15px;
}

/* HEADINGS */

h4{
  margin-top:12px;
  margin-bottom:8px;
}

/* SIZE */

.size-selector{
  display:flex;
  gap:10px;
}

.size-btn{
  padding:10px 18px;
  border:1px solid #d4af37;
  border-radius:10px;
  background:#fff;
  cursor:pointer;
}

.active-size{
  background:#d4af37;
  color:#fff;
}

/* QTY */

.qty-box{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
}

.qty-box button{
  width:34px;
  height:34px;
  border:none;
  background:#eee;
  border-radius:8px;
  cursor:pointer;
}

/* BUTTON */

.button-row{
  margin-top:18px;
}

.cart-btn{
  width:100%;
  height:56px;
  border:none;
  border-radius:14px;
  background:linear-gradient(
      135deg,
      #111,
      #222
  );
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}

/* MOBILE */

@media(max-width:768px){

  .product-page{
    grid-template-columns:1fr;
    gap:18px;
    padding:15px;
  }

  .main-image{
    aspect-ratio:1/1;
  }

  .thumb-gallery{
    justify-content:center;
  }

  .thumb-gallery img{
    width:50px;
    height:50px;
  }

  .product-info{
    text-align:center;
  }

  .reviews,
  .price-box,
  .size-selector,
  .qty-box{
    justify-content:center;
  }

  .description{
    font-size:14px;
    max-width:95%;
    margin:auto auto 12px;
  }

  .cart-btn{
    height:52px;
  }
}

.back-shopping{
    position:absolute;
    top:20px;
    left:20px;
    z-index:100;
}

.back-shopping a{
    display:inline-block;
    background:#fff;
    color:#111;
    text-decoration:none;
    padding:14px 24px;
    border-radius:30px;
    font-size:16px;
    font-weight:500;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

@media(max-width:768px){

  .back-shopping{
      top:12px;
      left:12px;
  }

  .back-shopping a{
      padding:10px 18px;
      font-size:14px;
  }

}

.product-page{
    margin-top:80px;
}


/* .review-btn{
  background:#d4af37;
  border:none;
  padding:10px 20px;
  border-radius:10px;
  cursor:pointer;
}

.review-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  z-index:999;
}

.review-content{
  width:90%;
  max-width:500px;
  background:#fff;
  margin:100px auto;
  padding:20px;
  border-radius:15px;
}

.review-content input,
.review-content textarea,
.review-content select{
  width:100%;
  margin:10px 0;
  padding:10px;
}

.review-card{
  background:#fff;
  padding:15px;
  border-radius:15px;
  margin-top:15px;
}

.review-photo{
  width:120px;
  border-radius:10px;
}

.review-card{
  background:#fff;
  padding:15px;
  border-radius:15px;
  margin-top:15px;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.review-card h4{
  margin-bottom:8px;
}

.review-card p{
  margin-bottom:6px;
}

.reviews-section{
  margin-top:80px;
}

.review-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:25px;
}

.review-card{
  background:#fff;
  padding:20px;
  border-radius:16px;
  margin-top:15px;
  box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.review-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
}

.review-card h4{
  font-size:18px;
}

.review-card p{
  color:#555;
}


.reviews-section{
  margin-top:60px;
}

.review-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.review-btn{
  background:#d4af37;
  color:#fff;
  border:none;
  padding:12px 20px;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
}

.rating-summary{
  margin-bottom:25px;
}

#avgRating{
  font-size:34px;
  font-weight:700;
  color:#111;
}

#reviewCount{
  color:#666;
}

.review-card{
  background:#fff;
  border-radius:18px;
  padding:20px;
  margin-bottom:15px;
  box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.review-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.verified-badge{
  background:#edf7ec;
  color:#2f7d32;
  padding:6px 12px;
  border-radius:8px;
  font-size:12px;
}

.review-rating{
  color:#d4af37;
  font-weight:600;
  margin-bottom:8px;
}

.review-comment{
  color:#555;
  line-height:1.6;
} */


/* =========================
   PREMIUM REVIEW SECTION
========================= */

.reviews-section{
    width:100%;
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
}

.review-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.review-header h2{
    font-size:34px;
    font-weight:700;
    color:#111;
}

/* ADD REVIEW BUTTON */

.review-btn{
    background:#d4af37;
    color:#fff;
    border:none;
    padding:14px 24px;
    border-radius:12px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.review-btn:hover{
    transform:translateY(-2px);
}

/* RATING SUMMARY */

.rating-summary{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-bottom:25px;
    border:1px solid #ece7dd;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

#avgRating{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:5px;
}

#reviewCount{
    font-size:15px;
    color:#666;
}

/* REVIEW CARD */

.review-card{
    background:#fff;
    border-radius:20px;
    padding:24px;
    margin-bottom:18px;
    border:1px solid #ece7dd;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-3px);
}

.review-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
}

.review-top h4{
    font-size:18px;
    color:#111;
    font-weight:600;
}

/* VERIFIED BUYER */

.verified-badge{
    background:#edf7ec;
    color:#2f7d32;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

/* STAR RATING */

.review-rating{
    color:#d4af37;
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
}

/* COMMENT */

.review-comment{
    color:#555;
    line-height:1.8;
    font-size:15px;
}

/* MODAL */

.review-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(5px);
    z-index:9999;
}

.review-content{
    width:95%;
    max-width:500px;
    background:#fff;
    border-radius:24px;
    padding:25px;
    margin:60px auto;
}

.review-content h3{
    margin-bottom:20px;
    font-size:24px;
}

.review-content input,
.review-content select,
.review-content textarea{
    width:100%;
    padding:14px;
    margin-bottom:14px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    font-size:15px;
    font-family:'Poppins',sans-serif;
}

.review-content textarea{
    min-height:120px;
    resize:none;
}

.review-content button{
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    background:#111;
    color:#fff;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .reviews-section{
        margin:60px auto;
        padding:0 15px;
    }

    .review-header{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .review-header h2{
        font-size:28px;
    }

    .review-btn{
        width:100%;
    }

    .rating-summary{
        padding:20px;
    }

    #avgRating{
        font-size:34px;
    }

    .review-top{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .review-card{
        padding:18px;
    }

    .review-comment{
        font-size:14px;
    }

    .review-content{
        margin:25px auto;
        padding:20px;
    }
}



.whatsapp-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    max-width:420px;

    margin:18px auto 0;

    padding:15px 20px;

    background:linear-gradient(
      135deg,
      #25D366,
      #1ebe5d
    );

    color:#fff;
    text-decoration:none;

    font-size:16px;
    font-weight:600;

    border-radius:14px;

    box-shadow:0 10px 25px rgba(37,211,102,.25);

    transition:.3s ease;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(37,211,102,.35);
}

.whatsapp-btn:active{
    transform:scale(.98);
}

/* TABLET */

@media(max-width:768px){

    .whatsapp-btn{
        max-width:100%;
        font-size:15px;
        padding:14px 18px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .whatsapp-btn{
        width:100%;
        font-size:14px;
        padding:13px 16px;
        border-radius:12px;
    }

}