.pw-products-section {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  font-family: "Hind Siliguri", sans-serif;
  box-sizing: border-box;
  padding: 0 12px;
}

.pw-products-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 🌸 সেকশন হেডার */
.pw-products-header {
  text-align: center;
  margin-bottom: 25px;
}

.pw-top-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #03615f;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 4px;
  position: relative;
}

.pw-top-tagline::before,
.pw-top-tagline::after {
  content: "—";
  margin: 0 6px;
}

.pw-sec-title {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
}

.pw-sec-title span {
  color: #03615f;
}

/* 📦 ৪ কলাম প্রোডাক্ট কার্ড গ্রিড */
.pw-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 25px;
}

/* 💖 সিঙ্গেল প্রোডাক্ট কার্ড */
.pw-product-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.pw-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(3, 97, 95, 0.12);
  border-color: #a7e1d5;
}

/* 🖼️ ইমেজ কভার */
.pw-img-box {
  width: 100%;
  height: 240px;
  position: relative;
  background: #f8fafc;
  overflow: hidden;
}

.pw-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pw-product-card:hover .pw-img-box img {
  transform: scale(1.04);
}

/* 🏷️ ব্যাজ */
.pw-edition-pill {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #e6f5f2;
  color: #03615f;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 12px;
  border-radius: 50px;
  border: 1px solid #a7e1d5;
  white-space: nowrap;
}

/* 📝 কার্ড কন্টেন্ট */
.pw-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.pw-prod-name {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.35;
  margin-bottom: 8px;
  min-height: 38px;
}

/* 💰 প্রাইসিং ও ডিসকাউন্ট */
.pw-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.pw-cur-price {
  font-family: "Poppins", "Hind Siliguri", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #dc2626;
}

.pw-old-price {
  font-family: "Poppins", "Hind Siliguri", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
}

.pw-disc-badge {
  background: #fee2e2;
  color: #dc2626;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
}

/* ⭐ রেটিং ও সোল্ড কাউন্ট */
.pw-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 12px;
}

.pw-stars {
  color: #f59e0b;
  font-size: 11px;
}

/* 🛒 Order Now বাটন (#order) */
.pw-order-now-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #03615f;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(3, 97, 95, 0.2);
}

.pw-order-now-btn:hover {
  background: #024746;
  transform: translateY(-1px);
}

/* 🛡️ বটম ফিচার স্ট্রিপ */
.pw-bottom-strip {
  background: #f8fafb;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
}

.pw-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pw-strip-icon {
  font-size: 22px;
  color: #03615f;
}

.pw-strip-text h5 {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.pw-strip-text span {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 600;
}

/* 📱 মোবাইল ও ট্যাবলেট রেসপন্সিভ */
@media (max-width: 992px) {
  .pw-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pw-bottom-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 550px) {
  .pw-sec-title {
    font-size: 22px;
  }

  .pw-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .pw-img-box {
    height: 180px;
  }

  .pw-card-body {
    padding: 8px;
  }

  .pw-prod-name {
    font-size: 13px;
    min-height: 32px;
    margin-bottom: 4px;
  }

  .pw-cur-price {
    font-size: 16px;
  }

  .pw-old-price {
    font-size: 12px;
  }

  .pw-order-now-btn {
    font-size: 12.5px;
    padding: 7px 6px;
  }

  .pw-bottom-strip {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 10px;
  }
}
/* 🌟 মেইন ব্যানার সেকশন */
.pw-hero-section {
  width: 100%;
  margin: 5px auto;
  font-family: "Hind Siliguri", sans-serif;
  background: #fdfbf7;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #eee8dc;
}

.pw-hero-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 🔝 টপ বার */
.pw-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: #ffffff;
  border-bottom: 1px solid #eee8dc;
  flex-wrap: wrap;
  gap: 10px;
}

.pw-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  letter-spacing: 1px;
}

.pw-brand-logo i {
  font-size: 20px;
}

.pw-features-top {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: #374151;
  flex-wrap: wrap;
}

.pw-features-top div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pw-features-top i {
  font-size: 14px;
  color: #111827;
}

/* 📦 ২-কলাম হিরো বডি */
.pw-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
}

/* ⬅️ বাম পাশের কন্টেন্ট */
.pw-left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ⏳ কাউন্টডাউন টাইমার বক্স */
.pw-timer-card {
  border: 1.5px solid #dc2626;
  border-radius: 12px;
  padding: 10px 18px 12px 18px;
  margin-bottom: 16px;
  background: #ffffff;
  width: 100%;
  max-width: 380px;
}

.pw-timer-tag {
  color: #dc2626;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pw-timer-boxes {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pw-time-box {
  background: #dc2626;
  color: #ffffff;
  border-radius: 6px;
  padding: 4px 14px;
  min-width: 72px;
}

.pw-time-num {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.pw-time-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
}

/* 🏷️ টাইটেল ও সাব-টাইটেল */
.pw-collection-tag {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #03615f;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pw-main-title {
  font-size: 27px;
  font-weight: 900;
  color: #03615f;
  line-height: 1.25;
  margin-bottom: 6px;
}

.pw-main-title .top-head {
  color: #0f172a;
  display: block;
  font-size: 24px;
}

.pw-specs-subtext {
  font-size: 13.5px;
  font-weight: 700;
  color: #4b5563;
  margin-bottom: 12px;
}

/* 💰 প্রাইস স্ট্রিপ */
.pw-offer-tag {
  font-size: 12px;
  font-weight: 800;
  color: #92400e;
  background: #fef3c7;
  padding: 2px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 4px;
}

.pw-pricing-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.pw-curr-price {
  font-family: "Poppins", "Hind Siliguri", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #dc2626;
}

.pw-old-price {
  font-family: "Poppins", "Hind Siliguri", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #9ca3af;
}

.pw-discount-pill {
  background: #dc2626;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 14px;
}

/* ✅ ৪টি চেকলিস্ট গ্রিড */
.pw-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
  text-align: left;
  margin-bottom: 16px;
  width: 100%;
  max-width: 360px;
}

.pw-f-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: #1f2937;
}

.pw-f-item i {
  color: #03615f;
  font-size: 13px;
}

/* 🛒 Shaky Order Button */
.pw-btn-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  margin-bottom: 8px;
}

.pw-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #03615f 0%, #024746 100%);
  color: #ffffff !important;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 800;
  padding: 11px 24px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(3, 97, 95, 0.35);
  border: 1px solid #34d399;
  position: relative;
  z-index: 2;
  animation: pwShake 2.5s infinite ease-in-out;
}

@keyframes pwShake {
  0%,
  65%,
  100% {
    transform: translateX(0) scale(1);
  }
  70% {
    transform: translateX(-3px) rotate(-1deg) scale(1.02);
  }
  75% {
    transform: translateX(3px) rotate(1deg) scale(1.02);
  }
  80% {
    transform: translateX(-2px) scale(1.01);
  }
  85% {
    transform: translateX(2px) scale(1.01);
  }
  90% {
    transform: translateX(0) scale(1);
  }
}

.pw-btn-wrap::before,
.pw-btn-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background: #03615f;
  opacity: 0.55;
  z-index: 1;
  animation: pwWavy 2s infinite ease-in-out;
  pointer-events: none;
}

.pw-btn-wrap::after {
  animation-delay: 1s;
}

@keyframes pwWavy {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.06, 1.25);
    opacity: 0;
  }
}

.pw-order-btn:hover {
  background: linear-gradient(135deg, #04807d 0%, #03615f 100%);
}

.pw-lim-notice {
  font-size: 13px;
  font-weight: 700;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ➡️ ডান পাশের ইমেজ ক্যারোসেল */
.pw-carousel-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background: #f1ede4;
}

.pw-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.pw-carousel-slide {
  min-width: 100%;
  position: relative;
}

.pw-carousel-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* ক্যারোসেল অ্যারো বাটন */
.pw-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  color: #111827;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 5;
  transition: all 0.2s ease;
}

.pw-arrow-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.pw-arrow-prev {
  left: 10px;
}
.pw-arrow-next {
  right: 10px;
}

/* ক্যারোসেল ডটস */
.pw-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 5;
}

.pw-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pw-dot.active {
  width: 22px;
  border-radius: 20px;
  background: #03615f;
}

/* 📱 মোবাইল রেসপন্সিভ */
@media (max-width: 850px) {
  .pw-hero-grid {
    grid-template-columns: 1fr;
    padding: 18px 14px;
  }

  .pw-carousel-slide img {
    height: 420px;
  }

  .pw-main-title {
    font-size: 23px;
  }

  .pw-main-title .top-head {
    font-size: 20px;
  }

  .pw-top-bar {
    justify-content: center;
    gap: 12px;
  }
}

 .pw-details-section {
    width: 100%;
    max-width: 1150px;
    margin: 20px auto;
    font-family: 'Hind Siliguri', sans-serif;
    box-sizing: border-box;
    padding: 0 12px;
  }

  .pw-details-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* 🌸 হেডার */
  .pw-details-header {
    text-align: center;
    margin-bottom: 24px;
  }

  .pw-details-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #03615F;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
  }

  .pw-details-tag::before, .pw-details-tag::after {
    content: "—";
    margin: 0 6px;
  }

  .pw-details-title {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
  }

  /* 📦 ৩ কলাম গ্রিড লেআউট */
  .pw-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 0.9fr;
    gap: 20px;
    align-items: center;
  }

  /* 🖼️ বাম পাশের স্মুথ ফেইড স্লাইডার */
  .pw-fade-slider-box {
    width: 100%;
    height: 330px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #f1ede4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .pw-fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pw-fade-slide.active {
    opacity: 1;
    visibility: visible;
  }

  .pw-fade-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  /* 📋 মাঝের ফিচার লিস্ট */
  .pw-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .pw-feature-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .pw-feat-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #e6f5f2;
    border: 1.5px solid #a7e1d5;
    border-radius: 12px;
    color: #03615F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .pw-feat-info h4 {
    font-size: 15.5px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .pw-feat-info p {
    font-size: 13.5px;
    color: #64748b;
    font-weight: 600;
  }

  /* 📐 ডান পাশের সাইজ চার্ট কার্ড */
  .pw-size-card {
    background: #f8fafb;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px 18px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  }

  .pw-size-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    text-align: left;
    padding-left: 4px;
  }

  .pw-size-tbl {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
  }

  .pw-size-tbl th {
    font-size: 13px;
    font-weight: 800;
    color: #475569;
    padding: 6px 4px;
    text-align: center;
    border-bottom: 1.5px solid #cbd5e1;
  }

  .pw-size-tbl td {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    padding: 8px 4px;
    text-align: center;
    border-bottom: 1px dashed #e2e8f0;
  }

  .pw-size-tbl tr:last-child td {
    border-bottom: none;
  }

  .pw-size-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #03615F;
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 800;
    padding: 9px 24px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(3, 97, 95, 0.25);
  }

  .pw-size-btn:hover {
    background: #024746;
    transform: translateY(-1px);
  }

  /* 📱 ট্যাবলেট ও মোবাইল রেসপন্সিভ */
  @media (max-width: 900px) {
    .pw-details-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .pw-fade-slider-box {
      height: 300px;
      max-width: 480px;
      margin: 0 auto;
    }

    .pw-features-list {
      max-width: 480px;
      margin: 0 auto;
      width: 100%;
    }

    .pw-size-card {
      max-width: 480px;
      margin: 0 auto;
      width: 100%;
    }
  }

  @media (max-width: 550px) {
    .pw-details-title {
      font-size: 22px;
    }

    .pw-fade-slider-box {
      height: 260px;
    }

    .pw-feature-row {
      gap: 10px;
    }

    .pw-feat-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
      font-size: 15px;
    }

    .pw-feat-info h4 {
      font-size: 14.5px;
    }

    .pw-feat-info p {
      font-size: 12.5px;
    }
  }

  .pw-review-full-section {
    width: 100%;
    max-width: 1150px;
    margin: 20px auto;
    font-family: 'Hind Siliguri', sans-serif;
    box-sizing: border-box;
    padding: 0 12px;
  }

  .pw-review-full-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* 🌸 হেডার */
  .pw-rev-header {
    text-align: center;
    margin-bottom: 22px;
  }

  .pw-rev-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #03615F;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
  }

  .pw-rev-tag::before, .pw-rev-tag::after {
    content: "—";
    margin: 0 6px;
  }

  .pw-rev-title {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
  }

  /* 🎠 স্লাইডার ভিউপোর্ট */
  .pw-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 4px 0;
  }

  .pw-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 16px;
  }

  /* 🔲 প্রতি স্লাইডে কার্ড (পিসিতে ৩টি, ট্যাবে ২টি, মোবাইলে ১টি) */
  .pw-review-card {
    flex: 0 0 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
  }

  .pw-rev-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    gap: 2px;
  }

  .pw-rev-msg {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    line-height: 1.55;
    margin-bottom: 16px;
    text-align: left;
    min-height: 54px;
  }

  /* 👤 ইউজার তথ্য (ইমেজ ছাড়া ক্লিন ভিউ) */
  .pw-user-meta {
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
  }

  .pw-user-details h5 {
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .pw-user-details span {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
  }

  /* 🔘 স্লাইডার ডটস */
  .pw-dots-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .pw-s-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .pw-s-dot.active {
    width: 24px;
    border-radius: 20px;
    background: #03615F;
  }

  /* 🎁 স্পেশাল অফার স্ট্রিপ */
  .pw-special-offer-strip {
    background: #fffbeb;
    border: 1.5px dashed #fde68a;
    border-radius: 14px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 15px;
    flex-wrap: wrap;
  }

  .pw-offer-text-area {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .pw-offer-pill-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #dc2626;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
  }

  .pw-offer-heading {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
  }

  .pw-strip-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #03615F;
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 800;
    padding: 9px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(3, 97, 95, 0.3);
    transition: all 0.2s ease;
  }

  .pw-strip-order-btn:hover {
    background: #024746;
    transform: scale(1.02);
  }

  /* 📞 ৩টি কল ও অ্যাকশন বাটন */
  .pw-floating-btn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .pw-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .pw-action-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
  }

  .btn-wp { background: #22c55e; }
  .btn-tel { background: #0284c7; }
  .btn-ord { background: #dc2626; }

  /* 📱 ট্যাবলেট ও মোবাইল রেসপন্সিভ */
  @media (max-width: 900px) {
    .pw-review-card {
      flex: 0 0 calc((100% - 16px) / 2);
      max-width: calc((100% - 16px) / 2);
    }
  }

  @media (max-width: 650px) {
    .pw-rev-title {
      font-size: 22px;
    }

    .pw-review-card {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 14px;
    }

    .pw-special-offer-strip {
      flex-direction: column;
      text-align: center;
      padding: 14px;
    }

    .pw-strip-order-btn {
      width: 100%;
      justify-content: center;
    }

    .pw-floating-btn-grid {
      grid-template-columns: 1fr;
      gap: 8px;
    }
  }

/* ==========================================================================
   🛒 পাইলট ওয়্যার চেকআউট সেকশন (Checkout Section)
   ========================================================================== */
.pw-checkout-section {
  width: 100%;
  max-width: 1150px;
  margin: 35px auto 40px auto;
  font-family: 'Hind Siliguri', sans-serif;
  box-sizing: border-box;
  padding: 0 12px;
  scroll-margin-top: 20px;
}

.pw-checkout-section * {
  box-sizing: border-box;
}

/* 🌸 চেকআউট হেডার */
.pw-checkout-header {
  text-align: center;
  margin-bottom: 26px;
}

.pw-checkout-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #03615F;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 4px;
}

.pw-checkout-tag::before,
.pw-checkout-tag::after {
  content: "—";
  margin: 0 6px;
}

.pw-checkout-title {
  font-size: 30px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 6px;
}

.pw-checkout-title span {
  color: #03615F;
}

.pw-checkout-desc {
  font-size: 14.5px;
  color: #64748b;
  font-weight: 600;
}

/* 📦 চেকআউট লেআউট */
.pw-checkout-products-top {
  width: 100%;
  margin-bottom: 22px;
}

.pw-checkout-bottom-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
  width: 100%;
}

.pw-checkout-bottom-left {
  display: flex;
  flex-direction: column;
}

.pw-checkout-bottom-right {
  display: flex;
  flex-direction: column;
}

/* 📋 ফর্ম কার্ড স্টাইল */
.pw-form-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.pw-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid #f1f5f9;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.pw-card-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pw-card-header-title i {
  color: #03615F;
  font-size: 18px;
}

.pw-card-header-title h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.pw-card-notice {
  font-size: 12px;
  font-weight: 700;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 3px 10px;
  border-radius: 20px;
}

/* 👕 প্রোডাক্ট সিলেকশন গ্রিড (পিসিতে ২ কলাম, মোবাইলে ১ কলাম) */
.pw-product-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.pw-select-card {
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  padding: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.pw-select-card:hover {
  border-color: #cbd5e1;
}

.pw-select-card.selected {
  border-color: #03615F;
  background: #f0fdfa;
  box-shadow: 0 4px 16px rgba(3, 97, 95, 0.08);
}

.pw-select-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
}

.pw-select-check-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex: 1;
  width: 100%;
  min-width: 0;
  user-select: none;
}

.pw-prod-checkbox {
  width: 22px;
  height: 22px;
  min-width: 22px;
  cursor: pointer;
  accent-color: #03615F;
  flex-shrink: 0;
}

.pw-select-thumb {
  width: 58px;
  height: 58px;
  min-width: 58px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  flex-shrink: 0;
}

.pw-select-meta {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.pw-select-title {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.35;
  margin-bottom: 2px;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pw-select-price {
  font-family: 'Poppins', 'Hind Siliguri', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #dc2626;
}

/* সাইজ ও কোয়ান্টিটি বার - সম্পূর্ণ রেসপন্সিভ */
.pw-select-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}

.pw-size-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  min-width: 0;
}

.pw-opt-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #475569;
  white-space: nowrap;
}

.pw-size-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.pw-size-btn-pill {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1.1;
}

.pw-size-btn-pill:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.pw-size-btn-pill.active {
  background: #03615F;
  border-color: #03615F;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(3, 97, 95, 0.25);
}

/* কোয়ান্টিটি স্টিপার */
.pw-qty-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pw-qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.pw-qty-btn {
  background: #f1f5f9;
  border: none;
  width: 28px;
  height: 28px;
  font-size: 15px;
  font-weight: 800;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.pw-qty-btn:hover {
  background: #e2e8f0;
}

.pw-qty-num {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  min-width: 28px;
  text-align: center;
}

/* 📝 বিলিং ইনপুট ফিল্ডস */
.pw-input-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pw-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pw-input-group label {
  font-size: 13.5px;
  font-weight: 700;
  color: #334155;
}

.pw-input-group label span {
  color: #dc2626;
}

.pw-input-field {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 14px;
  color: #0f172a;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
}

.pw-input-field:focus {
  background: #ffffff;
  border-color: #03615F;
  box-shadow: 0 0 0 3px rgba(3, 97, 95, 0.12);
}

.pw-input-field::placeholder {
  color: #94a3b8;
}

/* 🚚 শিপিং মেথড স্টাইল */
.pw-shipping-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pw-shipping-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.2s ease;
}

.pw-shipping-card:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.pw-shipping-card.selected {
  border-color: #03615F;
  background: #f0fdfa;
}

.pw-shipping-card.disabled {
  opacity: 0.45;
  pointer-events: none;
  background: #f1f5f9;
}

.pw-ship-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pw-ship-radio {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #03615F;
}

.pw-ship-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #1e293b;
}

.pw-ship-note {
  font-size: 11.5px;
  color: #64748b;
  margin-top: 2px;
}

.pw-ship-cost {
  font-family: 'Poppins', 'Hind Siliguri', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}

.pw-free-badge {
  background: #dcfce7;
  color: #15803d;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid #86efac;
}

/* 🎉 ফ্রি শিপিং প্রগ্রেস নোটিশ */
.pw-free-ship-banner {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.pw-free-ship-banner.info {
  background: #fffbeb;
  border: 1.5px dashed #fde68a;
  color: #92400e;
}

.pw-free-ship-banner.success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #15803d;
}

/* 🧾 অর্ডার সামারি (ডান পাশের কার্ড) */
.pw-summary-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 20px;
}

.pw-cart-items-list {
  border-bottom: 1.5px solid #f1f5f9;
  padding-bottom: 12px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
}

.pw-cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pw-cart-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.pw-cart-item-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.pw-cart-item-info {
  overflow: hidden;
}

.pw-cart-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.pw-cart-item-meta {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pw-cart-item-size {
  background: #e6f5f2;
  color: #03615F;
  border: 1px solid #a7e1d5;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 11px;
}

.pw-cart-item-price {
  font-family: 'Poppins', 'Hind Siliguri', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
}

/* হিসাব-নিকাশ রো */
.pw-calc-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #475569;
  margin-bottom: 16px;
}

.pw-calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pw-calc-val {
  font-family: 'Poppins', 'Hind Siliguri', sans-serif;
  font-weight: 700;
  color: #0f172a;
}

.pw-calc-divider {
  border-top: 1.5px dashed #cbd5e1;
  margin: 6px 0;
}

.pw-calc-grand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  padding-top: 4px;
}

.pw-grand-total-val {
  font-family: 'Poppins', 'Hind Siliguri', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #dc2626;
}

/* 🚀 অর্ডার কনফার্ম বাটন */
.pw-checkout-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #03615F 0%, #024746 100%);
  color: #ffffff;
  border: none;
  font-family: 'Hind Siliguri', 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(3, 97, 95, 0.35);
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 16px;
}

.pw-checkout-submit-btn:hover {
  background: linear-gradient(135deg, #04807d 0%, #03615F 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(3, 97, 95, 0.45);
}

.pw-checkout-submit-btn:active {
  transform: translateY(0);
}

/* 🛡️ ট্রাস্ট ব্যাজেস */
.pw-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.pw-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pw-trust-item i {
  color: #03615F;
  font-size: 16px;
}

.pw-trust-item span {
  font-size: 11.5px;
  font-weight: 700;
  color: #475569;
}

/* 📱 ট্যাবলেট ও মোবাইল রেসপন্সিভ */
@media (max-width: 900px) {
  .pw-checkout-grid,
  .pw-checkout-bottom-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pw-summary-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .pw-product-select-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 550px) {
  .pw-checkout-title {
    font-size: 22px;
  }

  .pw-form-card,
  .pw-summary-card {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .pw-select-card {
    padding: 12px 10px;
    gap: 9px;
  }

  .pw-select-check-label {
    gap: 9px;
  }

  .pw-prod-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .pw-select-thumb {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 8px;
  }

  .pw-select-title {
    font-size: 13.5px;
    line-height: 1.3;
  }

  .pw-select-price {
    font-size: 15px;
  }

  .pw-select-options {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding-top: 8px;
  }

  .pw-opt-label {
    font-size: 11.5px;
  }

  .pw-size-group {
    gap: 5px;
  }

  .pw-size-buttons {
    gap: 4px;
  }

  .pw-size-btn-pill {
    font-size: 11.5px;
    padding: 4px 7px;
  }

  .pw-qty-btn {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .pw-qty-num {
    min-width: 24px;
    font-size: 13px;
  }

  .pw-checkout-submit-btn {
    font-size: 15.5px;
    padding: 12px;
  }

  .pw-trust-badges {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  }

  .pw-trust-item {
    flex-direction: row;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .pw-select-options {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .pw-size-group,
  .pw-qty-group {
    justify-content: space-between;
    width: 100%;
  }
}