body{
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background-color:#fff;
  color:#3b3128;
  font-size:16px;
}

.product-page-wrapper{
  padding:2.5rem 0 3.5rem;
  background-color:#fdf9f1;
}

/* LEFT COLUMN : GALLERY */
.product-gallery-main{
  background-color:#fff;
  border-radius:10px;
  border:1px solid #eee0d0;
  padding:1rem;
  display:flex;
  gap:1rem;
  height:100%;
}

.product-thumb-list{
  max-width:102px
}
.product-thumb{
  border-radius:8px;
  overflow:hidden;
  border:1px solid #eee0d0;
  margin-bottom:0.75rem;
  cursor:pointer;
  background:#faf5ee;
}
.product-thumb img{
  width:100%;
  display:block;
  object-fit:cover;
}
.product-thumb.active{
  border-color:#a5493b;
  box-shadow:0 0 0 1px #a5493b;
}

.product-main-img-wrap{
  position:relative;
  width:100%;
  aspect-ratio:3/4;
  border-radius:10px;
  overflow:hidden;
  border:1px solid #eee0d0;
  background:#faf5ee;
  flex:1;
}
.product-main-img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.product-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border-radius:50%;
  border:none;
  background:rgba(0,0,0,0.45);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:5;
}
.product-arrow-left{ left:10px; }
.product-arrow-right{ right:10px; }
.product-arrow i{ font-size:20px; }

/* WISHLIST ICON */
.wishlist-btn{
  position:absolute;
  top:10px;
  right:10px;
  width:34px;
  height:34px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.9);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:6;
  box-shadow:0 2px 8px rgba(0,0,0,0.12);
}
.wishlist-btn i{
  font-size:18px;
  color:#b13f30;
}
.wishlist-btn.active i{
  color:#e63946;
}

/* thumbnails bottom (for mobile) */
.product-thumb-bar-mobile{
  display:none;
  margin-top:0.9rem;
  gap:0.6rem;
  overflow-x:auto;
  padding-bottom:0.25rem;
}
.product-thumb-bar-mobile .product-thumb{
  flex:0 0 auto;
  width:80px;
  aspect-ratio:3/4;
  margin-bottom:0;
}

/* RIGHT COLUMN : DETAILS */
.product-panel{
  background:#fff;
  border-radius:10px;
  border:1px solid #eee0d0;
  padding:1.3rem 1.4rem 1.6rem;
  height:100%;
  display:flex;
  flex-direction:column;
}

.product-title{
  font-family:"Georgia",serif;
  font-size:26px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  margin-bottom:0.6rem;
}
.product-price-main{
  color:#b13f30;
  font-size:24px;
  font-weight:600;
}
.product-price-old{
  text-decoration:line-through;
  color:#a9a09a;
  margin-left:10px;
  font-size:17px;
}
.product-badge-off{
  background:#973939;
  color:#fff;
  border-radius:999px;
  padding:0.2rem 0.8rem;
  font-size:13px;
  margin-left:0.6rem;
}
.product-sold-meta{
  font-size:14px;
  color:#857a70;
}

.product-section-title{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:#7b6a5a;
  margin-bottom:0.45rem;
}

.size-pill{
  border-radius:999px;
  border:1px solid #e0d3c4;
  background:#fff;
  padding:0.45rem 1rem;
  font-size:14px;
  min-width:46px;
  text-align:center;
  cursor:pointer;
}
.size-pill.active{
  border-color:#973939;
  background:#f9ece7;
  color:#973939;
  font-weight:500;
}

.qty-control{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  border:1px solid #e0dacb;
  overflow:hidden;
  background:#faf6ee;
}
.qty-btn{
  width:38px;
  height:34px;
  border:none;
  background:transparent;
  font-size:20px;
  line-height:1;
}
.qty-input{
  width:44px;
  height:34px;
  border:none;
  text-align:center;
  font-size:15px;
  background:transparent;
}

.btn-add-cart{
  background-color:#973939;
  border-color:#973939;
  color:#fff;
  border-radius:0;
  padding:0.8rem 1.6rem;
  font-size:14px;
  letter-spacing:0.06em;
  text-transform:uppercase;
}
.btn-add-cart:hover{
  background-color:#7f2f2f;
  border-color:#7f2f2f;
  color:#fff;
}
.btn-buy-now{
  background-color:#000;
  border-color:#000;
  color:#fff;
  border-radius:0;
  padding:0.8rem 1.6rem;
  font-size:14px;
  letter-spacing:0.06em;
  text-transform:uppercase;
}
.btn-buy-now:hover{
  background-color:#222;
  border-color:#222;
  color:#fff;
}

.btn-customise{
  border-radius:999px;
  border:1px solid #c8b49b;
  background:#fffaf0;
  padding:0.4rem 1.4rem;
  font-size:13px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:#715c4a;
}
.btn-customise:hover{
  background:#f4e5d1;
  color:#000;
}

/* COUPON */
.coupon-wrapper{
  margin-top:1.5rem;
  background:#fff;
  border-radius:8px;
  border:1px solid #e6d6c2;
  padding:0.75rem 1rem 1rem;
}
.coupon-item{
  position:relative;
  background:#f6efe3;
  border-radius:6px;
  border:1px dashed #c9b899;
  padding:0.6rem 0.9rem;
  font-size:14px;
  display:block;
  min-height:56px;
}
.coupon-tag{
  background:#973939;
  color:#fff;
  border-radius:999px;
  font-size:11px;
  padding:0.12rem 0.6rem;
  margin-right:0.5rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.coupon-text-wrap{
  display:flex;
  flex-direction:column;
  margin-top:10px;
}
.coupon-code{
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  margin-top:4px;
}

.coupon-copy-icon{
  position:absolute;
  top:8px;
  right:10px;
  border:none;
  background:transparent;
  padding:0;
  cursor:pointer;
  color:#7b6a5a;
}
.coupon-copy-icon i{
  font-size:16px;
}

.coupon-dots{
  margin-top:0.6rem;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 20px;
}

.coupon-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#d0c4b3;
  display:inline-block;
  cursor:pointer;
}
.coupon-dot.active{
  background:#973939;
}

/* mobile arrows (desktop me hidden) */
.coupon-arrow{
  display:none;
  width:22px;
  height:22px;
  border-radius:50%;
  border:none;
  background:#f0e3d3;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:12px;
  line-height:1;
}

/* INFO BLOCK */
.info-block{
  background:#fff;
  border-radius:10px;
  border:1px solid #eee0d0;
  padding:1.4rem 1.4rem 1.6rem;
}
.safe-checkout-logos img{
  height:28px;
  margin-right:8px;
}
.feature-strip{
  border:1px solid #eee0d0;
  border-radius:10px;
  overflow:hidden;
  margin-top:1rem;
  margin-bottom:1.3rem;
}
.feature-strip-item{
   padding:10px 0px;
  font-size:14px;
}
.feature-strip-item:not(:last-child){
  border-right:1px solid #eee0d0;
}

.share-text{
  font-size:15px;
  display:flex;
  align-items:center;
  gap:6px;
}

.accordion-button{
  font-size:15px;
}
.accordion-button:focus{
  box-shadow:none;
}
.accordion-button:not(.collapsed){
  background:#ffcfcf;
}
.accordion-body{
  font-size:14px;
}

@media (max-width:991.98px){
  .product-title{ font-size:22px; }

  .product-gallery-main{
    flex-direction:column;
  }
  .product-thumb-list{
    display:none;
  }
  .product-thumb-bar-mobile{
    display:flex;
  }
}

@media (max-width:575.98px){
  body{ font-size:15px; }
  .btn-add-cart,
  .btn-buy-now{
    width:100%;
  }
  .feature-strip-item{
    font-size:13px;
  }

  .coupon-item{
    padding:0.75rem 0.85rem 0.7rem;
  }
  .coupon-copy-icon i{
    font-size:18px;
  }

  /* sirf mobile me arrows visible */
  .coupon-arrow{
    display:flex;
  }
}

/* Write a review section css starts */

.review-section{
  padding:2.25rem 0 2.75rem;
  background:#fdf9f1;
  color:#3b3128;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

/* top line */
.review-top-line{
  border-top:1px solid #eee0d0;
  border-bottom:1px solid #eee0d0;
  padding:0.8rem 0;
  margin-bottom:1rem;
}
.review-top-text{
  font-size:14px;
}
.review-stars-static .bi-star{
  color:#c85a40;
  font-size:16px;
}

/* toggle button */
.btn-review-toggle{
  background:#c85a40;
  border-color:#c85a40;
  color:#fff;
  border-radius:999px;
  padding:0.35rem 1.4rem;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.09em;
}
.btn-review-toggle:hover{
  background:#a94a33;
  border-color:#a94a33;
  color:#fff;
}

/* card */
.review-form-card{
  max-width:640px;
  margin:1.5rem auto 0;
  background:#f9e3e3;
  /* background:#ffe9e9;  */
  border-radius:10px;
  border:1px solid #eee0d0;
  padding:1.5rem 1.7rem 1.9rem;
}
.review-form-title{
  font-family:"Georgia",serif;
  font-size:20px;
  letter-spacing:0.04em;
}

.review-label{
  font-size:14px;
  color:#5b4d43;
  margin-bottom:0.35rem;
}
.review-count{
  font-size:11px;
  color:#a3907f;
}

.review-input,
.review-textarea{
  border-radius:6px;
  border-color:#e1d5c9;
  font-size:14px;
}
.review-input:focus,
.review-textarea:focus,
.review-file-input:focus{
  box-shadow:none;
  border-color:#c85a40;
}

/* rating */
.review-stars-select .bi-star,
.review-stars-select .bi-star-fill{
  font-size:22px;
  cursor:pointer;
  margin:0 2px;
}
.review-stars-select .bi-star{
  color:#d4b5a4;
}
.review-stars-select .bi-star-fill{
  color:#c85a40;
}

/* upload row */
.review-upload-row{
  font-size:13px;
}
.review-file-input{
  max-width:260px;
}
.btn-review-upload{
  background:#973939;
  border-color:#973939;
  color:#fff;
  border-radius:4px;
  font-size:12px;
  padding:0.35rem 0.9rem;
}
.btn-review-upload:hover{
  background:#7f2f2f;
  border-color:#7f2f2f;
}
.review-upload-helper{
  font-size:12px;
  color:#8b7a6a;
}
.review-image-preview img{
  border-radius:6px;
  border:1px solid #e1d5c9;
  max-height:260px;
  object-fit:cover;
}

/* main buttons */
.btn-review-primary{
  background:#973939;
  border-color:#973939;
  color:#fff;
  border-radius:0;
  padding:0.65rem 1.6rem;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:0.06em;
}
.btn-review-primary:hover{
  background:#7f2f2f;
  border-color:#7f2f2f;
}
.btn-review-secondary{
  background:#fff;
  border:1px solid #c85a40;
  color:#c85a40;
  border-radius:0;
  padding:0.65rem 1.6rem;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:0.06em;
}
.btn-review-secondary:hover{
  background:#fbe9e4;
  color:#a94a33;
}

/* responsive */
@media (max-width:767.98px){
  .review-top-line{
    padding:0.7rem 0.25rem;
    margin-bottom:0.75rem;
  }
  .btn-review-toggle{
    width:100%;
    text-align:center;
    justify-content:center;
  }
  .review-form-card{
    margin-top:1rem;
    padding:1.2rem 1rem 1.5rem;
  }
  .review-file-input{
    width:100%;
    max-width:none;
  }
  .review-upload-row{
    align-items:stretch !important;
  }
}


/* Write a review section css ends */

/* People also viewed section css starts */

.related-products-section{
  background:#fff;
  color:#3b3128;
}

/* card */
.related-card{
  transition:transform 0.35s ease-out, box-shadow 0.35s ease-out;
  background:#fff;
  padding:10px;
  border-radius:15px;
}
.related-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 22px rgba(0,0,0,0.08);
}

/* image wrapper */
.related-img-wrap{
  position:relative;
  width:100%;
  padding-top:150%;
  overflow:hidden;
  background:#f8f5f0;
  border-radius:8px;
}

/* images */
.related-img-wrap .img-main,
.related-img-wrap .img-hover{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  will-change:opacity,transform;
  transition:opacity 0.5s ease-out, transform 0.5s ease-out;
}
.related-img-wrap .img-main{
  opacity:1;
  transform:scale(1);
}
.related-img-wrap .img-hover{
  opacity:0;
  transform:scale(1.02);
}
.related-card:hover .img-main{
  opacity:0;
  transform:scale(1.02);
}
.related-card:hover .img-hover{
  opacity:1;
  transform:scale(1);
}

/* IMAGE ICONS (wishlist + view) */
.related-img-actions{
  position:absolute;
  left:14px;
  top:85%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.25s ease-out, transform 0.25s ease-out;
}
.related-card:hover .related-img-actions{
  opacity:1;
  pointer-events:auto;
  transform:translateY(-50%) translateX(0);
}
.related-icon{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.12);
  cursor:pointer;
}
.related-icon i{
  font-size:18px;
  color:#333;
  transition:color 0.2s ease;
}

/* wishlist active */
.related-icon.wishlist-active{
  background:#000;
}
.related-icon.wishlist-active i{
  color:#fff;
}

/* title + price row */
.related-title{
  font-size:17px;
  font-weight:600;
  line-height:1.7;
  margin-bottom:0.2rem;
}
.related-price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.related-price{
  font-size:14px;
  font-weight:600;
  color:#3b3128;
}

/* CART ICON (price ke aage) */
.related-cart-icon{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.related-cart-icon i{
  font-size:18px;
  color:#fff;
}

/* QUICK VIEW MODAL – screenshot style */
.quickview-modal .modal-dialog{
  max-width:1120px;
}
.quickview-modal .modal-content{
  border-radius:0;
  padding:0;
      height: 67vh;
}
.quickview-left{
  border-right:1px solid #f1f1f1;
  padding: 10px;
}

/* big image + thumbnails */
/* big image + thumbnails */
.quickview-main-img-wrap{
position: relative;
    padding-top: 100%;
    background: #f8f5f0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.quickview-main-img-wrap img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

/* THUMBNAILS – horizontal, fixed size */
.quickview-thumbs{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 14px 16px;
  background:#fff;
  border-top:1px solid #f1f1f1;
}
.quickview-thumb{
  flex:0 0 auto;
  width:70px;
  height:95px;
  border-radius:4px;
  overflow:hidden;
  cursor:pointer;
  border:1px solid transparent;
  background:#f8f5f0;
}
.quickview-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}
.quickview-thumb.active{
  border-color:#000;
}


/* right side */
.quickview-title{
  font-family:"Georgia",serif;
  font-size:26px;
  line-height:1.3;
}
.quickview-price{
  color:#d3543f;
  font-size:20px;
  font-weight:700;
}
.quickview-stars i{
  color:#f6b01e;
  font-size:16px;
}

/* stock bar */
.quickview-stock-text{
  font-size:13px;
  font-weight:600;
}
.quickview-stock-bar{
  height:3px;
  background:#f0f0f0;
}
.quickview-stock-bar-inner{
  height:3px;
  background:#22aa4e;
}

/* qty + add to cart */
.qty-btn{
  width:36px;
  height:40px;
  border-radius:0;
}
.qty-input{
  width:50px;
  text-align:center;
  border-radius:0;
}
.btn-quickview-atc{
  background:#f16a5d;
  border-color:#f16a5d;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:0.09em;
  padding:0.65rem 2.5rem;
}

.btn-quickview-atc:hover{
  background:#f3e6cc;
}

/* share */
.quickview-share{
  font-size:13px;
}
.quickview-share i{
  font-size:15px;
  margin-left:10px;
}

.quickview-share .share-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:10px;
  color:#333;
  text-decoration:none;
}
.quickview-share .share-icon:hover{
  color:#000;
}

/* responsive */
@media (max-width:991.98px){
  .quickview-modal .modal-dialog{
    max-width:100%;
    margin:0.5rem;
  }
  .quickview-left{
    border-right:none;
    border-bottom:1px solid #f1f1f1;
  }
}

/* Swiper ke default arrow icon ko hide karo */
.related-swiper-prev::after,
.related-swiper-next::after{
  content:'';
}

/* tumhara icon ka circle design */
.related-arrow-icon{
  width:25px;
  height:25px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,0.16);
  display:flex;
  align-items:center;
  justify-content:center;
      margin-bottom: 100px;
}

.related-arrow-icon i{
  font-size:17px;
  color:#000;
}


/* People also viewed section css ends */
/* Shop by categories section css ends */

.shop-category-section{
  background:#fff;
  padding:60px 0;
}

.shop-category-title{
  font-family:"Georgia",serif;
  font-size:32px;
  text-align:center;
  margin-bottom:40px;
}

/* circle image wrapper */
.category-circle{
  width:210px;
  max-width:100%;
  aspect-ratio:1/1;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto;
  background:#f7f7f7;
}

.category-circle img{
  width:100%;
  height:100%;
  object-fit:cover;        /* image full dikhe */
  object-position:center;
  transition:transform 0.35s ease-out;
}

.category-link{
  display:block;
  text-decoration:none;
}

.category-link:hover img{
  transform:scale(1.05);
}

/* swiper arrows */
.shop-category-wrapper{
  position:relative;
}

.shop-cat-prev,
.shop-cat-next{
  color:#000;
}

.shop-cat-prev::after,
.shop-cat-next::after{
  content:'';
}

.shop-cat-prev i,
.shop-cat-next i{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,0.16);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

/* center slider on large screens */
.shop-category-section .swiper{
  padding:10px 40px; /* thoda space arrows ke liye */
}

@media (max-width:575.98px){
  .shop-category-section{
    padding:40px 0;
  }
  .shop-category-title{
    font-size:24px;
    margin-bottom:24px;
  }
  .shop-category-section .swiper{
    padding:10px 30px;
  }
}

/* Shop by categories section css ends */
