.product-hero-clean {
  min-height: 310px;
  display: flex;
  align-items: center;
}
.product-hero-clean::before {
  background: linear-gradient(
    90deg,
    rgba(4, 34, 17, 0.88),
    rgba(4, 34, 17, 0.55),
    rgba(4, 34, 17, 0.18)
  );
}
.product-detail-section {
  background: #fff;
  padding: 38px 0 24px;
}
.product-detail-enhanced {
  align-items: start;
  gap: 34px;
}
.le-product-gallery {
  width: 100%;
  min-width: 0;
}
.le-product-gallery-main {
  position: relative;
  min-height: 520px;
  height: min(560px, 52vw);
  border-radius: 28px;
  background: radial-gradient(circle at 50% 35%, #fff 0%, #f4faee 68%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(28, 68, 38, 0.08);
}
.le-product-gallery-main img {
  width: 100%;
  height: 100%;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.le-product-gallery-main img.is-changing {
  opacity: 0.18;
  transform: scale(0.985);
}
.le-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
}
.le-gallery-arrow:hover {
  background: var(--green);
  color: #fff;
}
.le-gallery-prev {
  left: 16px;
}
.le-gallery-next {
  right: 16px;
}
.le-product-gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 14px 2px 4px;
  scrollbar-width: none;
}
.le-product-gallery-thumbs::-webkit-scrollbar {
  display: none;
}
.le-gallery-thumb {
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  border: 2px solid transparent;
  border-radius: 18px;
  background: #f7fbf3;
  padding: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.68;
  transition: 0.2s ease;
}
.le-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.le-gallery-thumb.is-active,
.le-gallery-thumb:hover {
  border-color: var(--green);
  opacity: 1;
  transform: translateY(-2px);
}
.product-detail-copy h1 {
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.05;
  margin: 12px 0 14px;
  color: var(--green-dark);
}
.product-short-description {
  font-size: 1.05rem;
  color: #233129;
}
.product-main-price {
  margin: 15px 0 18px;
  font-size: 1.6rem;
}
.product-title-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin: -3px 0 12px;
}
.product-title-rating .product-rating-number {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 900;
}
.product-title-rating .product-rating-stars {
  color: #ffb400;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.product-title-rating .product-review-count-link {
  color: #68756d;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}
.product-title-rating .product-review-count-link:hover {
  color: var(--green);
}

.product-facts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.85fr);
  gap: 18px;
  margin: 18px 0;
  align-items: stretch;
}
.product-facts-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-size: 0.98rem;
}
.product-facts-list div {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.product-facts-list strong {
  min-width: 58px;
  color: #111;
}
.product-origin-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.product-origin-compact div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 15px;
  background: #fbfdf8;
}
.product-origin-compact span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-origin-compact strong {
  display: block;
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 0.92rem;
}
.product-add-cart-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 18px;
}
.product-add-cart-form .form-control {
  max-width: 110px;
}
.product-purchase-panel {
  margin: 24px 0 18px;
  padding: 20px;
  border: 1px solid #dce5dc;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 50, 27, 0.06);
}
.product-purchase-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.product-purchase-price-row > div:first-child {
  display: grid;
  gap: 4px;
}
.product-purchase-price {
  color: #151823;
  font-size: 1.45rem;
  font-weight: 900;
}
.product-purchase-price-row small {
  color: #168d83;
  font-weight: 800;
}
.product-quantity-control {
  display: flex;
  align-items: center;
  gap: 14px;
}
.product-quantity-control > span {
  color: #8b939d;
  font-size: 0.82rem;
  font-weight: 800;
}
.product-quantity-stepper {
  display: grid;
  grid-template-columns: 42px 64px 42px;
  height: 44px;
  border: 1px solid #d8dee5;
  border-radius: 8px;
  overflow: hidden;
}
.product-quantity-stepper button {
  border: 0;
  background: #fff;
  color: #8b939d;
  font-size: 1.35rem;
  cursor: pointer;
}
.product-quantity-stepper button:hover {
  background: #f2f7f3;
  color: var(--green);
}
.product-quantity-stepper input {
  width: 100%;
  border: 0;
  border-left: 1px solid #e1e5e9;
  border-right: 1px solid #e1e5e9;
  text-align: center;
  font-weight: 900;
  outline: 0;
  -moz-appearance: textfield;
}
.product-quantity-stepper input::-webkit-outer-spin-button,
.product-quantity-stepper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.product-primary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.product-primary-actions form {
  margin: 0;
}
.product-buy-now-btn,
.product-add-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 58px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}
.product-buy-now-btn {
  background: #17171f;
  color: #fff;
}
.product-buy-now-btn:hover {
  background: #000;
}
.product-add-cart-btn {
  background: #d8e9ff;
  color: #1671dc;
}
.product-add-cart-btn:hover {
  background: #c7ddfa;
}
.product-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 0;
}
.product-service-card {
  font: inherit;
  min-height: 88px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e1e5e1;
  border-radius: 12px;
  background: #f7f7f7;
  color: #202923;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: 0.18s ease;
}
.product-service-card:hover {
  transform: translateY(-1px);
  border-color: #cad7cc;
  box-shadow: 0 10px 22px rgba(22, 48, 29, 0.07);
}
.product-service-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #e2e6e2;
  font-size: 1.2rem;
}
.product-service-bulk .product-service-icon {
  background: #4058e4;
  color: #fff;
}
.product-service-whatsapp .product-service-icon {
  background: #eaf9ee;
  color: #11a84a;
}
.product-service-copy {
  min-width: 0;
}
.product-service-copy strong {
  display: block;
  color: #263129;
  font-size: 0.92rem;
}
.product-service-copy small {
  display: block;
  margin-top: 4px;
  color: #1671dc;
  font-size: 0.8rem;
  font-weight: 700;
}
.product-service-whatsapp .product-service-copy small {
  color: #159447;
}
.product-service-arrow {
  color: #9da7a0;
  font-size: 0.75rem;
}
.product-message-seller-btn {
  width: 100%;
  margin-top: 10px;
}
.product-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.product-contact-modal.is-open {
  display: flex;
}
.product-contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}
.product-contact-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(620px, 96vw);
  max-height: 92vh;
  overflow: auto;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}
.product-contact-modal-dialog h2 {
  margin: 10px 0 6px;
  color: var(--green-dark);
}
.product-contact-modal-dialog p {
  margin: 0 0 18px;
  color: var(--muted);
}
.product-contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #eef2ef;
  color: #24342a;
  font-size: 1.35rem;
  cursor: pointer;
}
.product-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.product-contact-modal label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #1a271f;
  font-weight: 900;
}
.product-contact-full {
  grid-column: 1 / -1;
}
.product-modal-action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-modal-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-after-cart {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product-share-only {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.product-share-label {
  color: #68756d;
  font-size: 0.82rem;
  font-weight: 900;
}
.product-rating-share-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.product-rating-compact {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: 800;
}
.product-rating-compact strong {
  font-size: 1.25rem;
  color: var(--green-dark);
}
.review-stars {
  color: #bfc4cb;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.review-stars.is-rated {
  color: #ffb400;
}
.product-share-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  padding: 10px 18px;
  font-weight: 900;
  cursor: pointer;
}
.product-share-btn:hover {
  background: var(--green);
  color: #fff;
}
.product-share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.product-share-button {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  text-decoration: none;
}
.product-share-button:hover {
  background: var(--green);
  color: #fff;
}
.product-bulk-form-message {
  margin: 12px 0 0 !important;
  padding: 10px 12px;
  border-radius: 9px;
  background: #edf7ee;
  color: #2d7038 !important;
  font-size: 0.8rem;
  font-weight: 800;
}
.product-video-section {
  background: #f8fbf5;
  padding: 36px 0;
}
.product-video-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 42px rgba(28, 68, 38, 0.07);
}
.product-video-copy h2 {
  margin: 10px 0;
  color: var(--green-dark);
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
}
.product-video-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #eef3ec;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-video-frame video,
.product-video-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
.product-info-section {
  background: #fbfdf8;
  padding: 12px 0 38px;
}
.product-info-tabs {
  margin-top: 0 !important;
}
.product-info-tabs .tab-box {
  margin-top: 0;
}
.product-info-tabs .tab-box {
  background: #fff;
}
.product-reviews-section {
  background: #fff;
  padding: 50px 0;
}
.le-reviews-card {
  border: 1px solid #dce5dc;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.le-reviews-heading {
  margin: 0;
  padding: 20px 24px;
  border-bottom: 1px solid #dce5dc;
  background: #f7f9fb;
  font-size: 1.3rem;
  color: #0f2244;
}
.le-review-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  border-bottom: 1px solid #dce5dc;
}
.le-review-average-box,
.le-rating-bars,
.le-review-write-box {
  min-height: 210px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.le-review-average-box {
  text-align: center;
  border-right: 1px solid #dce5dc;
}
.le-review-average-box span {
  color: #0f2244;
  font-weight: 800;
}
.le-review-average-box strong {
  display: block;
  margin: 12px 0 8px;
  color: #ff454d;
  font-size: 3rem;
  line-height: 1;
}
.le-review-stars {
  color: #dfe4ea;
  letter-spacing: 0.08em;
}
.le-review-stars.is-rated {
  color: #ffb400;
}
.le-review-stars small {
  color: #8da0ae;
  letter-spacing: 0;
}
.le-review-average-box p {
  margin: 8px 0 0;
  color: #8da0ae;
}
.le-rating-bars {
  gap: 14px;
  border-right: 1px solid #dce5dc;
}
.le-rating-bar-row {
  display: grid;
  grid-template-columns: 50px 1fr 28px;
  gap: 12px;
  align-items: center;
  color: #0f2244;
  font-weight: 800;
}
.le-rating-bar-row em {
  font-style: normal;
  color: #8da0ae;
  text-align: right;
}
.le-rating-bar {
  height: 8px;
  border-radius: 999px;
  background: #e4e7ea;
  overflow: hidden;
}
.le-rating-bar i {
  display: block;
  height: 100%;
  background: #008a7a;
  border-radius: inherit;
}
.le-review-write-box {
  align-items: center;
}
.le-write-review-btn {
  min-width: 180px;
  height: 50px;
  border: 1px solid #006d76;
  border-radius: 999px;
  background: #fff;
  color: #006d76;
  font-weight: 900;
  cursor: pointer;
}
.le-write-review-btn:hover {
  background: #006d76;
  color: #fff;
}
.le-customer-review-list {
  padding: 26px 32px 34px;
}
.le-customer-review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e1e7e1;
}
.le-customer-review-head h3 {
  margin: 0;
  color: #111;
}
.le-customer-review-head .form-control {
  max-width: 150px;
  border-radius: 8px;
}
.le-review-list-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #eef1ee;
}
.le-review-list-item:last-child {
  border-bottom: 0;
}
.le-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e7edf2;
  color: #74879a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.le-review-meta-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #0f2244;
}
.le-review-meta-line time {
  color: #8da0ae;
  font-size: 0.9rem;
}
.le-verified {
  color: #006d76;
  margin-left: 6px;
  font-weight: 900;
}
.le-review-body p {
  color: #8293a0;
}
.le-review-helpful {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #8da0ae;
  font-size: 0.85rem;
}
.le-review-helpful button {
  border: 0;
  background: transparent;
  color: #8da0ae;
  cursor: pointer;
}
.le-reviews-empty {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9ba0aa;
  font-weight: 900;
}
.le-reviews-empty span {
  margin-top: 10px;
  font-size: 2.5rem;
  opacity: 0.45;
}
.le-review-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.le-review-modal.is-open {
  display: flex;
}
.le-review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.le-review-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(540px, 96vw);
  border-radius: 24px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
}
.le-review-modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f0f3f1;
  font-size: 1.4rem;
  cursor: pointer;
}
.product-review-form label {
  display: block;
  margin: 14px 0 7px;
  font-weight: 900;
}
.product-review-form .btn {
  width: 100%;
  margin-top: 16px;
}
.le-related-section {
  background: #acff58;
  padding: 54px 0 62px;
}
.le-related-section .container {
  width: min(1120px, 92vw);
}
.le-related-section .eyebrow {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(0, 0, 0, 0.08);
}
.le-related-section h2 {
  text-align: center;
  color: #004b48;
  margin: 0 0 34px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
}
.le-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 32px;
}
@media (max-width: 1000px) {
  .le-review-summary-grid {
    grid-template-columns: 1fr;
  }
  .le-review-average-box,
  .le-rating-bars {
    border-right: 0;
    border-bottom: 1px solid #dce5dc;
  }
  .product-detail-enhanced,
  .product-video-card {
    grid-template-columns: 1fr;
  }
  .product-hero-clean {
    min-height: 260px;
  }
  .le-product-gallery-main {
    height: auto;
    min-height: 340px;
    aspect-ratio: 1/1;
  }
  .le-related-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .product-purchase-price-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-quantity-control {
    justify-content: space-between;
    width: 100%;
  }
  .product-primary-actions,
  .product-service-grid,
  .product-contact-form-grid,
  .product-facts-layout {
    grid-template-columns: 1fr;
  }
  .product-contact-full {
    grid-column: auto;
  }
  .product-share-only {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-rating-share-row {
    display: block;
  }
  .product-share-btn {
    margin-top: 12px;
    width: 100%;
  }
  .le-gallery-thumb {
    flex-basis: 70px;
    width: 70px;
    height: 70px;
  }
  .le-customer-review-head {
    display: block;
  }
  .le-customer-review-head .form-control {
    max-width: 100%;
    margin-top: 12px;
  }
  .le-review-list-item {
    grid-template-columns: 1fr;
  }
}

/* Enhanced wholesale enquiry modal */
.product-bulk-modal .product-contact-modal-dialog {
  width: min(760px, 96vw);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
}

.product-bulk-modal .product-contact-modal-close {
  z-index: 5;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: #1a3524;
  box-shadow: 0 8px 20px rgba(16, 44, 25, 0.12);
}

.product-bulk-modal form {
  max-height: 92vh;
  overflow-y: auto;
}

.product-bulk-modal-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 27px 62px 24px 28px;
  background:
    radial-gradient(circle at 90% 0, rgba(159, 202, 56, 0.28), transparent 35%),
    linear-gradient(135deg, #eff9e9, #fff);
  border-bottom: 1px solid #dfe9df;
}

.product-bulk-modal-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  border-radius: 15px;
  background: #0b593b;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 12px 24px rgba(11, 89, 59, 0.2);
}

.product-bulk-kicker {
  display: block;
  margin-bottom: 5px;
  color: #4b7958;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-bulk-modal-head h2 {
  margin: 0 0 7px;
  font-size: 1.45rem;
}

.product-bulk-modal-head p {
  max-width: 570px;
  margin: 0;
  line-height: 1.55;
}

.product-bulk-product-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin: 20px 24px 0;
  padding: 13px 15px;
  border: 1px solid #dfe7e0;
  border-radius: 14px;
  background: #f9fbf9;
}

.product-bulk-product-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eaf4e8;
  color: #0b593b;
}

.product-bulk-product-card small {
  display: block;
  margin-bottom: 3px;
  color: #7f8b83;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-bulk-product-card strong {
  display: block;
  color: #1e2c23;
  font-size: 0.9rem;
}

.product-bulk-product-card em {
  color: #6d786f;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
}

.product-bulk-section {
  margin: 18px 24px 0;
  padding: 18px;
  border: 1px solid #e2e8e2;
  border-radius: 15px;
  background: #fff;
}

.product-bulk-section h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #233129;
  font-size: 0.92rem;
}

.product-bulk-section h3 i {
  color: #0b593b;
}

.product-bulk-modal .product-contact-form-grid {
  gap: 13px;
}

.product-bulk-modal label {
  margin: 0;
  color: #344139;
  font-size: 0.79rem;
}

.product-bulk-modal .form-control {
  min-height: 48px;
  border: 1px solid #dce5dd;
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
  outline: 0;
}

.product-bulk-modal .form-control:focus {
  border-color: #0b74ff;
  box-shadow: 0 0 0 4px rgba(11, 116, 255, 0.08);
}

.product-bulk-modal textarea.form-control {
  min-height: 105px;
  resize: vertical;
}

.product-bulk-notice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 17px 24px 0;
  padding: 12px 14px;
  border-radius: 11px;
  background: #f2f7f2;
  color: #637067;
  font-size: 0.76rem;
  line-height: 1.5;
}

.product-bulk-notice i {
  margin-top: 2px;
  color: #0b593b;
}

.product-bulk-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
  padding: 18px 24px 23px;
  border-top: 1px solid #e4ebe5;
  background: #fafcfa;
}

.product-bulk-cancel,
.product-bulk-modal .product-modal-submit {
  min-height: 48px;
  border-radius: 10px;
  padding: 0 18px;
  font-weight: 900;
}

.product-bulk-cancel {
  border: 1px solid #dce5dd;
  background: #fff;
  color: #526058;
  cursor: pointer;
}

.product-bulk-modal .product-modal-submit {
  border: 0;
  background: #0b74ff;
  color: #fff;
  cursor: pointer;
}

.product-bulk-form-message {
  margin: 14px 24px 0 !important;
}

.product-service-whatsapp.is-disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .product-bulk-modal {
    padding: 10px;
  }

  .product-bulk-modal-head {
    padding: 22px 54px 20px 18px;
  }

  .product-bulk-modal-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .product-bulk-product-card {
    grid-template-columns: 42px minmax(0, 1fr);
    margin-inline: 14px;
  }

  .product-bulk-product-card em {
    grid-column: 2;
  }

  .product-bulk-section {
    margin-inline: 14px;
    padding: 15px;
  }

  .product-bulk-notice,
  .product-bulk-form-message {
    margin-inline: 14px !important;
  }

  .product-bulk-modal-actions {
    align-items: stretch;
    flex-direction: column-reverse;
    padding-inline: 14px;
  }

  .product-bulk-cancel,
  .product-bulk-modal .product-modal-submit {
    width: 100%;
  }
}

/* =========================================================
   QUICK WHATSAPP ORDER MODAL
   ========================================================= */
.product-whatsapp-order-modal .product-contact-modal-dialog {
  width: min(570px, 96vw);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
}

.product-whatsapp-order-modal .product-contact-modal-close {
  z-index: 5;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.94);
  color: #174126;
  box-shadow: 0 8px 20px rgba(16, 44, 25, 0.12);
}

.product-whatsapp-order-modal form {
  max-height: 92vh;
  overflow-y: auto;
}

.product-whatsapp-modal-head {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px 58px 22px 24px;
  border-bottom: 1px solid #d8eadc;
  background:
    radial-gradient(circle at 92% 0, rgba(69, 217, 111, 0.23), transparent 38%),
    linear-gradient(135deg, #eafbed, #fff);
}

.product-whatsapp-modal-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  border-radius: 15px;
  background: #16a64b;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 12px 24px rgba(22, 166, 75, 0.22);
}

.product-whatsapp-kicker {
  display: block;
  margin-bottom: 4px;
  color: #3b8052;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-whatsapp-modal-head h2 {
  margin: 0 0 6px;
  color: #12351f;
  font-size: 1.35rem;
}

.product-whatsapp-modal-head p {
  margin: 0;
  color: #637067;
  font-size: 0.82rem;
  line-height: 1.5;
}

.product-whatsapp-product-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin: 18px 22px 0;
  padding: 12px 14px;
  border: 1px solid #dfe8e1;
  border-radius: 13px;
  background: #f9fcf9;
}

.product-whatsapp-product-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #e7f7ea;
  color: #149345;
}

.product-whatsapp-product-card small {
  display: block;
  margin-bottom: 3px;
  color: #7d8981;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-whatsapp-product-card strong {
  display: block;
  color: #213029;
  font-size: 0.88rem;
}

.product-whatsapp-product-card em {
  color: #0b593b;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.product-whatsapp-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  padding: 18px 22px 0;
}

.product-whatsapp-order-modal label {
  display: grid;
  gap: 7px;
  margin: 0;
  color: #344139;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-whatsapp-order-modal .form-control {
  min-height: 47px;
  border: 1px solid #dce5dd;
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
  color: #25332a;
  font: inherit;
  outline: 0;
}

.product-whatsapp-order-modal .form-control:focus {
  border-color: #16a64b;
  box-shadow: 0 0 0 4px rgba(22, 166, 75, 0.09);
}

.product-whatsapp-notice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 16px 22px 0;
  padding: 11px 13px;
  border-radius: 10px;
  background: #eff8f1;
  color: #5d6b62;
  font-size: 0.74rem;
  line-height: 1.5;
}

.product-whatsapp-notice i {
  margin-top: 2px;
  color: #16a64b;
}

.product-whatsapp-form-message {
  margin: 13px 22px 0;
  padding: 10px 12px;
  border-radius: 9px;
  background: #eaf8ed;
  color: #267139;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-whatsapp-form-message.is-error {
  background: #fff2f3;
  color: #ac303a;
}

.product-whatsapp-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 17px;
  padding: 17px 22px 21px;
  border-top: 1px solid #e4ebe5;
  background: #fafcfa;
}

.product-whatsapp-cancel,
.product-whatsapp-submit {
  min-height: 47px;
  border-radius: 10px;
  padding: 0 17px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.product-whatsapp-cancel {
  border: 1px solid #dce5dd;
  background: #fff;
  color: #526058;
}

.product-whatsapp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: #16a64b;
  color: #fff;
  box-shadow: 0 12px 24px rgba(22, 166, 75, 0.18);
}

.product-whatsapp-submit:hover {
  background: #10883d;
}

.product-whatsapp-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

@media (max-width: 600px) {
  .product-whatsapp-order-modal {
    padding: 10px;
  }

  .product-whatsapp-modal-head {
    padding: 22px 52px 19px 17px;
  }

  .product-whatsapp-modal-icon {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
  }

  .product-whatsapp-product-card {
    grid-template-columns: 42px minmax(0, 1fr);
    margin-inline: 14px;
  }

  .product-whatsapp-product-card em {
    grid-column: 2;
  }

  .product-whatsapp-fields {
    grid-template-columns: 1fr;
    padding-inline: 14px;
  }

  .product-whatsapp-fields .product-contact-full {
    grid-column: auto;
  }

  .product-whatsapp-notice,
  .product-whatsapp-form-message {
    margin-inline: 14px;
  }

  .product-whatsapp-modal-actions {
    align-items: stretch;
    flex-direction: column-reverse;
    padding-inline: 14px;
  }

  .product-whatsapp-cancel,
  .product-whatsapp-submit {
    width: 100%;
  }
}

/* ==========================================================================
   14. WHOLESALE BOX QUANTITY, SUBMIT ALERT, AND WHATSAPP CHECKOUT
   ========================================================================== */

.product-field-help {
  display: block;
  margin-top: 6px;
  color: #7c8980;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.45;
}

.product-bulk-quantity-stepper {
  min-height: 48px;
  display: grid;
  grid-template-columns: 46px minmax(72px, 1fr) auto 46px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #dce5dd;
  border-radius: 10px;
  background: #fff;
}

.product-bulk-quantity-stepper:focus-within {
  border-color: #0b74ff;
  box-shadow: 0 0 0 4px rgba(11, 116, 255, 0.08);
}

.product-bulk-quantity-stepper button {
  border: 0;
  background: #f1f6f2;
  color: #0b593b;
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 900;
}

.product-bulk-quantity-stepper button:hover {
  background: #e4f1e6;
}

.product-bulk-quantity-stepper input {
  min-width: 0;
  border: 0;
  background: #fff;
  padding: 0 10px;
  color: #223128;
  text-align: center;
  font: inherit;
  font-weight: 900;
  outline: 0;
  -moz-appearance: textfield;
}

.product-bulk-quantity-stepper input::-webkit-inner-spin-button,
.product-bulk-quantity-stepper input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.product-bulk-quantity-stepper span {
  display: inline-flex;
  align-items: center;
  padding-right: 12px;
  color: #6d7a71;
  font-size: 0.76rem;
  font-weight: 900;
}

.product-whatsapp-price {
  display: grid;
  justify-items: end;
  gap: 2px;
  text-align: right;
}

.product-whatsapp-price em {
  color: #0b593b;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 900;
}

.product-whatsapp-price small {
  color: #7f8b83;
  font-size: 0.64rem;
  font-weight: 700;
}

.product-whatsapp-price strong {
  color: #16251b;
  font-size: 0.75rem;
  font-weight: 900;
}

.product-whatsapp-modal-actions {
  display: grid;
  grid-template-columns: auto minmax(130px, 0.8fr) minmax(155px, 1fr);
  align-items: center;
  gap: 10px;
}

.product-whatsapp-submit.is-save {
  border: 1px solid #cfe1d2;
  background: #edf7ef;
  color: #0b593b;
  box-shadow: none;
}

.product-whatsapp-submit.is-save:hover {
  background: #dfefe2;
}

.product-whatsapp-submit.is-checkout {
  background: #0b74ff;
  box-shadow: 0 12px 24px rgba(11, 116, 255, 0.2);
}

.product-whatsapp-submit.is-checkout:hover {
  background: #0963d8;
}

.product-submit-alert[hidden] {
  display: none;
}

.product-submit-alert {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 5000;
  width: min(390px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  align-items: start;
  gap: 11px;
  padding: 14px;
  border: 1px solid #cfe4d3;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 36, 18, 0.24);
  opacity: 0;
  transform: translateY(-14px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.product-submit-alert.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-submit-alert.is-success {
  border-color: #bfe1c5;
}

.product-submit-alert.is-error {
  border-color: #efc6ca;
}

.product-submit-alert-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e8f7eb;
  color: #148642;
}

.product-submit-alert.is-error .product-submit-alert-icon {
  background: #fff0f1;
  color: #b4313c;
}

.product-submit-alert strong {
  display: block;
  margin: 1px 0 4px;
  color: #17251b;
  font-size: 0.85rem;
}

.product-submit-alert p {
  margin: 0;
  color: #6c7971;
  font-size: 0.75rem;
  line-height: 1.5;
}

.product-submit-alert > button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 9px;
  background: #f2f5f2;
  color: #66736b;
  cursor: pointer;
}

@media (max-width: 640px) {
  .product-whatsapp-product-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .product-whatsapp-price {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .product-whatsapp-modal-actions {
    grid-template-columns: 1fr;
  }

  .product-whatsapp-modal-actions > * {
    width: 100%;
  }

  .product-submit-alert {
    top: 12px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}
