/* ==========================================================================
   Bulk & Corporate Orders — Premium UI
   Visual redesign only. Keeps all .bw- hooks used by bulk-orders.js
   Brand tokens from style.css :root
========================================================================== */

.bw-progress {
  /* position: sticky; */
  top: 0;
  z-index: 1040;
  padding: 14px 0 0;
  background: rgba(255, 249, 242, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 217, 200, 0.7);
  box-shadow: 0 8px 24px rgba(74, 42, 31, 0.04);
}

.bw-progress-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0 0 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.bw-progress-list::-webkit-scrollbar {
  display: none;
}

.bw-progress-item {
  position: relative;
  flex: 1 1 0;
  min-width: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.bw-progress-item::after {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% + 28px);
  width: calc(100% - 40px);
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.bw-progress-item:last-child::after {
  display: none;
}

.bw-progress-item.is-done::after {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.bw-progress-item span {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--border-color);
  color: var(--text-muted);
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bw-progress-item em {
  font-style: normal;
  letter-spacing: 0.02em;
}

.bw-progress-item.is-active,
.bw-progress-item.is-done {
  color: var(--secondary-dark);
}

.bw-progress-item.is-active span {
  background: linear-gradient(145deg, var(--primary), var(--accent));
  border-color: transparent;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(232, 140, 42, 0.35);
}

.bw-progress-item.is-done span {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  animation: bwStepPop 0.35s ease;
}

@keyframes bwStepPop {
  0% {
    transform: scale(0.85);
  }
  70% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

.bw-progress-bar {
  height: 4px;
  background: rgba(232, 217, 200, 0.7);
  border-radius: 99px;
  overflow: hidden;
}

.bw-progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.45s ease;
  box-shadow: 0 0 12px rgba(232, 140, 42, 0.45);
}

/* Decorative blobs */
.bw-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
  z-index: 0;
}

.bw-blob-1 {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -80px;
  background: radial-gradient(circle, rgba(232, 140, 42, 0.22), transparent 70%);
  animation: bwDrift 12s ease-in-out infinite;
}

.bw-blob-2 {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(244, 176, 42, 0.18), transparent 70%);
  animation: bwDrift 14s ease-in-out infinite reverse;
}

.bw-blob-3 {
  width: 180px;
  height: 180px;
  top: 40%;
  left: 42%;
  background: radial-gradient(circle, rgba(142, 58, 47, 0.08), transparent 70%);
}

@keyframes bwDrift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -14px);
  }
}

/* Hero */
.bw-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 85% 15%, rgba(232, 140, 42, 0.16), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(244, 176, 42, 0.12), transparent 35%),
    linear-gradient(145deg, var(--primary-light) 0%, #fff 48%, var(--bg-light) 100%);
}

.bw-hero .container {
  position: relative;
  z-index: 1;
}

.bw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(232, 140, 42, 0.28);
}

.bw-hero h1 {
  margin: 22px 0 16px;
  color: var(--secondary-dark);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.bw-hero h1 span {
  color: var(--primary);
}

.bw-hero > .container p,
.bw-hero .col-lg-6 > p {
  max-width: 540px;
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
}

.bw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.bw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.bw-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(232, 140, 42, 0.3);
}

.bw-btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.bw-btn-ghost {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--secondary-dark);
}

.bw-btn-ghost:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.bw-btn-block {
  width: 100%;
}

.bw-btn-light {
  background: #fff;
  color: var(--secondary-dark);
  box-shadow: var(--shadow-sm);
}

.bw-btn-light:hover {
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.bw-btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.bw-btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
}

.bw-btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.bw-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-2px);
}

.bw-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
  max-width: 540px;
}

.bw-stat {
  padding: 18px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(232, 217, 200, 0.8);
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bw-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.bw-stat strong {
  display: block;
  color: var(--primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.bw-stat span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.bw-hero-visual {
  position: relative;
  padding: 12px;
}

.bw-hero-frame {
  position: relative;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 242, 222, 0.7));
  box-shadow: var(--shadow-lg);
}

.bw-hero-img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.bw-hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--secondary-dark);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: bwFloat 3.6s ease-in-out infinite;
  z-index: 2;
}

.bw-hero-chip i {
  color: var(--primary);
}

.bw-hero-chip-1 {
  top: 28px;
  left: 0;
}

.bw-hero-chip-2 {
  right: 8px;
  bottom: 36px;
  animation-delay: 0.7s;
}

.bw-hero-chip-3 {
  left: 24px;
  bottom: 8px;
  animation-delay: 1.2s;
}

@keyframes bwFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Wizard shell */
.bw-wizard {
  position: relative;
  padding: 48px 0 40px;
  background:
    linear-gradient(180deg, #fff 0%, var(--bg-light) 38%, #fff 100%);
}

.bw-wizard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232, 140, 42, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.55;
  pointer-events: none;
}

.bw-wizard .container {
  position: relative;
  z-index: 1;
}

.bw-panel {
  margin-bottom: 28px;
  padding: 34px 32px;
  border: 1px solid rgba(232, 217, 200, 0.85);
  border-radius: 24px;
  background:
    linear-gradient(165deg, #fff 0%, #fffdf9 55%, var(--bg-light) 140%);
  box-shadow: 0 14px 40px rgba(74, 42, 31, 0.06);
  transition: var(--transition);
}

.bw-panel.is-dimmed {
  opacity: 0.58;
  filter: grayscale(0.08);
}

.bw-panel.is-active-step {
  opacity: 1;
  filter: none;
  border-color: rgba(232, 140, 42, 0.35);
  box-shadow: 0 18px 48px rgba(232, 140, 42, 0.1);
}

.bw-panel-head {
  margin-bottom: 28px;
}

.bw-step-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bw-panel-head h2,
.bw-section-head h2 {
  margin: 0 0 12px;
  color: var(--secondary-dark);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bw-panel-head p,
.bw-section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.bw-panel-foot {
  margin-top: 28px;
}

/* Categories */
.bw-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bw-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 20px;
  border: 1.5px solid transparent;
  border-radius: 22px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, #efe4d8, #f8e8d0) border-box;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.bw-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 242, 222, 0.35), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.bw-category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.bw-category-card:hover::before,
.bw-category-card.is-selected::before {
  opacity: 1;
}

.bw-category-card.is-selected {
  border-color: transparent;
  background:
    linear-gradient(#fffdf9, #fff7ec) padding-box,
    linear-gradient(145deg, var(--primary), var(--accent)) border-box;
  box-shadow: 0 16px 36px rgba(232, 140, 42, 0.18);
  transform: translateY(-4px);
}

.bw-category-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--primary-light), #fff);
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-size: 22px;
  transition: var(--transition);
}

.bw-category-card:hover .bw-category-icon,
.bw-category-card.is-selected .bw-category-icon {
  background: linear-gradient(145deg, var(--primary), var(--accent));
  border-color: transparent;
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 20px rgba(232, 140, 42, 0.3);
}

.bw-category-card strong {
  position: relative;
  z-index: 1;
  color: var(--secondary-dark);
  font-size: 17px;
  font-weight: 700;
}

.bw-category-card > span:last-of-type {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.bw-category-card .bw-check {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  color: var(--primary);
  font-size: 18px;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}

.bw-category-card.is-selected .bw-check {
  opacity: 1;
  transform: scale(1);
}

/* Products */
.bw-products-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 200px;
  border: 1.5px dashed #dcc9b5;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 249, 242, 0.9), rgba(255, 255, 255, 0.95));
  color: var(--text-muted);
  text-align: center;
  padding: 28px;
}

.bw-products-empty i {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 22px;
}

.bw-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bw-product-card {
  border: 1.5px solid transparent;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, #efe4d8, #f3ebe3) border-box;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: none;
}

.bw-product-card.is-visible {
  display: block;
  animation: bwCardIn 0.35s ease;
}

@keyframes bwCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.bw-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.bw-product-card.is-selected {
  background:
    linear-gradient(#fffdf9, #fff) padding-box,
    linear-gradient(145deg, var(--primary), var(--accent)) border-box;
  box-shadow: 0 16px 36px rgba(232, 140, 42, 0.18);
  transform: translateY(-4px) scale(1.01);
}

.bw-product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(160deg, #f7efe6, #efe4d8);
}

.bw-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bw-product-card:hover .bw-product-media img {
  transform: scale(1.1);
}

.bw-moq {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(74, 42, 31, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.bw-product-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: var(--transition);
  box-shadow: 0 8px 16px rgba(232, 140, 42, 0.35);
}

.bw-product-card.is-selected .bw-product-check {
  opacity: 1;
  transform: scale(1);
}

.bw-product-body {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(180deg, #fff, var(--bg-light));
}

.bw-product-body h3 {
  margin: 0;
  color: var(--secondary-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.bw-select-product {
  flex-shrink: 0;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-color);
  background: #fff;
  color: var(--secondary-dark);
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}

.bw-select-product:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.bw-product-card.is-selected .bw-select-product {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Form */
.bw-form-progress {
  margin-bottom: 26px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border: 1px solid var(--border-color);
}

.bw-form-progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.bw-form-progress-meta strong {
  color: var(--primary);
  font-weight: 700;
}

.bw-form-progress-track {
  height: 10px;
  border-radius: 99px;
  background: rgba(232, 217, 200, 0.7);
  overflow: hidden;
}

.bw-form-progress-track span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.35s ease;
}

.bw-field {
  position: relative;
}

.bw-field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--text-light);
  font-size: 14px;
  pointer-events: none;
  transition: var(--transition);
}

.bw-field-textarea .bw-field-icon {
  top: 22px;
  transform: none;
}

.bw-field input,
.bw-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 20px 16px 10px 44px;
  border: 1.5px solid var(--border-color);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--secondary-dark);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.bw-field textarea {
  min-height: 130px;
  resize: vertical;
  padding-top: 28px;
}

.bw-field label {
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
  transition: var(--transition);
}

.bw-field-textarea label {
  top: 18px;
  transform: none;
}

.bw-field input:focus,
.bw-field textarea:focus,
.bw-field.is-filled input,
.bw-field.is-filled textarea {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
  background: #fff;
}

.bw-field input:focus ~ .bw-field-icon,
.bw-field textarea:focus ~ .bw-field-icon,
.bw-field.is-filled .bw-field-icon,
.bw-field input:focus + label,
.bw-field textarea:focus + label,
.bw-field.is-filled label,
.bw-field .bw-label-static {
  color: var(--primary);
}

.bw-field input:focus + label,
.bw-field textarea:focus + label,
.bw-field.is-filled label,
.bw-field .bw-label-static {
  top: 8px;
  transform: none;
  font-size: 11px;
  font-weight: 600;
}

/* icon is before input in DOM, so sibling selectors need adjustment */
.bw-field:focus-within .bw-field-icon,
.bw-field.is-filled .bw-field-icon {
  color: var(--primary);
}

.bw-field:focus-within label,
.bw-field.is-filled label,
.bw-field .bw-label-static {
  top: 8px;
  transform: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
}

.bw-field-msg {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--red-sale);
  font-size: 12px;
  transition: var(--transition);
}

.bw-field.is-invalid input,
.bw-field.is-invalid textarea {
  border-color: var(--red-sale);
  animation: bwShake 0.35s ease;
}

.bw-field.is-invalid .bw-field-msg {
  max-height: 30px;
  opacity: 1;
  margin-top: 6px;
}

@keyframes bwShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}

.bw-upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 168px;
  padding: 24px;
  border: 1.5px dashed #dcc9b5;
  border-radius: 22px;
  background:
    linear-gradient(160deg, var(--bg-light), #fff);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.bw-upload-zone i {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-size: 22px;
  box-shadow: var(--shadow-sm);
}

.bw-upload-zone strong {
  color: var(--secondary-dark);
  font-size: 15px;
}

.bw-upload-zone span {
  color: var(--text-muted);
  font-size: 12px;
}

.bw-upload.is-dragover .bw-upload-zone,
.bw-upload-zone:hover {
  border-color: var(--primary);
  background: linear-gradient(160deg, var(--primary-light), #fff);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.bw-upload-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.bw-upload-preview img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

.bw-upload-preview .bw-file-meta {
  flex: 1;
  min-width: 0;
}

.bw-upload-preview strong {
  display: block;
  color: var(--secondary-dark);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bw-upload-preview span {
  color: var(--text-muted);
  font-size: 12px;
}

.bw-upload-preview button {
  border: none;
  background: var(--bg-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text-muted);
}

/* Review */
.bw-review-card {
  display: grid;
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bw-review-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-color);
  background: #fff;
}

.bw-review-row:nth-child(even) {
  background: linear-gradient(90deg, var(--bg-light), #fff);
}

.bw-review-row:last-child {
  border-bottom: none;
}

.bw-review-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.bw-review-row span i {
  color: var(--primary);
  width: 16px;
}

.bw-review-row strong {
  color: var(--secondary-dark);
  font-size: 14px;
  text-align: right;
}

/* Summary sticky — glass */
.bw-summary {
  position: sticky;
  top: 96px;
  border-radius: 24px;
  border: 1px solid rgba(232, 217, 200, 0.85);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(74, 42, 31, 0.1);
  overflow: hidden;
}

.bw-summary-glow {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 140, 42, 0.25), transparent 70%);
  pointer-events: none;
}

.bw-summary-head {
  position: relative;
  padding: 22px 20px 16px;
  border-bottom: 1px solid rgba(232, 217, 200, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 249, 242, 0.6));
}

.bw-summary-head h3 {
  margin: 0 0 8px;
  color: var(--secondary-dark);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bw-summary-head h3 i {
  color: var(--primary);
}

.bw-summary-eta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
}

.bw-summary-body {
  position: relative;
  padding: 18px 20px;
  display: grid;
  gap: 16px;
}

.bw-summary-block .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bw-summary-block .label i {
  color: var(--primary);
}

.bw-summary-block strong {
  display: block;
  color: var(--secondary-dark);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.bw-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bw-summary-grid .bw-summary-block {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 249, 242, 0.9);
  border: 1px solid var(--border-color);
}

.bw-summary-products,
.bw-summary-files {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.bw-summary-products li,
.bw-summary-files li {
  color: var(--secondary-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 249, 242, 0.95);
  border: 1px solid rgba(232, 217, 200, 0.7);
  animation: bwCardIn 0.3s ease;
}

.bw-summary-products li.is-empty,
.bw-summary-files li.is-empty {
  color: var(--text-muted);
  font-weight: 400;
  background: transparent;
  border-style: dashed;
}

.bw-summary-foot {
  position: relative;
  padding: 16px 20px 22px;
  border-top: 1px solid rgba(232, 217, 200, 0.7);
  background: rgba(255, 255, 255, 0.75);
}

.bw-summary-foot p {
  margin: 12px 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

/* Timeline */
.bw-timeline-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background:
    radial-gradient(circle at top left, rgba(232, 140, 42, 0.1), transparent 40%),
    linear-gradient(180deg, var(--bg-light) 0%, #fff8ef 50%, var(--bg-cream) 100%);
}

.bw-section-head {
  margin-bottom: 48px;
}

.bw-section-head .bw-eyebrow {
  margin-bottom: 14px;
}

.bw-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 18px;
}

.bw-timeline-line {
  display: none;
}

.bw-timeline-step {
  position: relative;
  padding: 26px 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 217, 200, 0.85);
  text-align: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.bw-timeline-step::before {
  content: "";
  position: absolute;
  top: 52px;
  left: calc(50% + 36px);
  width: calc(100% - 20px);
  height: 2px;
  background: linear-gradient(90deg, rgba(232, 140, 42, 0.35), rgba(232, 217, 200, 0.2));
  z-index: 0;
}

.bw-timeline-step:nth-child(4n + 1)::before,
.bw-timeline-step:last-child::before {
  display: none;
}

.bw-timeline-step.is-active {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fffdf9) padding-box,
    linear-gradient(145deg, var(--primary), var(--accent)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 18px 40px rgba(232, 140, 42, 0.14);
  transform: translateY(-6px);
}

.bw-timeline-dot {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--primary-light), #fff);
  color: var(--primary-dark);
  font-size: 22px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.bw-timeline-dot i {
  display: inline-block;
  line-height: 1;
}

.bw-timeline-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.bw-timeline-step.is-active .bw-timeline-dot,
.bw-timeline-step.is-done .bw-timeline-dot {
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(232, 140, 42, 0.3);
}

.bw-timeline-step h4 {
  margin: 0 0 8px;
  color: var(--secondary-dark);
  font-size: 16px;
  font-weight: 700;
}

.bw-timeline-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Why cards */
.bw-why {
  padding: 40px 0;
  background: #fff;
}

.bw-why-card {
  height: 100%;
  padding: 30px 26px;
  border-radius: 24px;
  border: 1px solid rgba(232, 217, 200, 0.85);
  background: linear-gradient(165deg, #fff 0%, var(--bg-light) 55%, var(--primary-light) 160%);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bw-why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 140, 42, 0.35);
}

.bw-why-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-size: 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bw-why-card:hover .bw-why-icon {
  background: linear-gradient(145deg, var(--primary), var(--accent));
  border-color: transparent;
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}

.bw-why-card h3 {
  margin: 0 0 10px;
  color: var(--secondary-dark);
  font-size: 19px;
  font-weight: 700;
}

.bw-why-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Testimonials */
.bw-testimonials {
  padding: 40px 0;
  background:
    linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
}

.bw-testimonial-card {
  height: 100%;
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 217, 200, 0.85);
  box-shadow: var(--shadow);
}

.bw-testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.bw-company-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.bw-stars {
  color: var(--accent);
  display: flex;
  gap: 3px;
}

.bw-testimonial-text {
  margin: 0 0 22px;
  color: var(--secondary-dark-soft);
  font-size: 16px;
  line-height: 1.75;
}

.bw-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bw-testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.bw-testimonial-author strong {
  display: block;
  color: var(--secondary-dark);
  font-size: 15px;
}

.bw-testimonial-author span {
  color: var(--text-muted);
  font-size: 13px;
}

.bw-testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.bw-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  background: #fff;
  color: var(--secondary-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.bw-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* FAQ */
.bw-faq-section {
  padding: 40px 0;
  background: #fff;
}

.bw-faq {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.bw-faq-item {
  border-radius: 18px;
  border: 1px solid rgba(232, 217, 200, 0.85);
  background: linear-gradient(180deg, #fff, var(--bg-light));
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bw-faq-item.is-open {
  border-color: rgba(232, 140, 42, 0.35);
  box-shadow: 0 12px 28px rgba(232, 140, 42, 0.1);
}

.bw-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: none;
  background: transparent;
  color: var(--secondary-dark);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.bw-faq-question i {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.bw-faq-item.is-open .bw-faq-question i {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.bw-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.bw-faq-item.is-open .bw-faq-answer {
  grid-template-rows: 1fr;
}

.bw-faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: var(--text-muted);
  line-height: 1.75;
}

.bw-faq-item.is-open .bw-faq-answer > p {
  padding-bottom: 20px;
}

/* Final CTA */
.bw-final-cta {
  padding: 40px 0 40px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
}
.bw-final-card {
	position: relative;
	overflow: hidden;
	padding: 64px 32px;
	border-radius: 28px;
	text-align: center;
	color: #fff;
	background: linear-gradient(135deg, rgba(97, 67, 57, 0.42), rgba(201, 111, 24, 0.64)), url('/website/images/banner-65.jpg') center/cover;
	box-shadow: var(--shadow-lg);
}

.bw-final-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -80px;
  right: -40px;
}

.bw-final-card h2,
.bw-final-card p,
.bw-final-actions {
  position: relative;
  z-index: 1;
}

.bw-final-card h2 {
	margin: 0 0 12px;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 700;
	color: white !important;
}
.bw-final-card p {
  margin: 0 auto 28px;
  max-width: 540px;
  opacity: 0.92;
  font-size: 16px;
  line-height: 1.7;
}

.bw-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Success overlay */
.bw-success {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(74, 42, 31, 0.55);
  backdrop-filter: blur(6px);
}

.bw-success-card {
  width: min(420px, 100%);
  padding: 40px 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, var(--bg-light));
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: bwPop 0.4s ease;
}

@keyframes bwPop {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.bw-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 28px;
  animation: bwPulse 0.8s ease;
  box-shadow: 0 12px 28px rgba(232, 140, 42, 0.35);
}

@keyframes bwPulse {
  0% {
    transform: scale(0.6);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.bw-success-card h3 {
  margin: 0 0 8px;
  color: var(--secondary-dark);
  font-size: 24px;
}

.bw-success-card p {
  margin: 0 0 22px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 1199px) {
  .bw-category-grid,
  .bw-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bw-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bw-timeline-step::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .bw-summary {
    position: static;
  }

  .bw-hero {
    padding: 48px 0 40px;
  }

  .bw-progress-item::after {
    display: none;
  }

  .bw-progress-item {
    flex-direction: row;
    min-width: auto;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.7);
  }

  .bw-progress-item span {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .bw-panel {
    padding: 26px 20px;
  }
}

@media (max-width: 767px) {
  .bw-category-grid,
  .bw-product-grid,
  .bw-timeline,
  .bw-summary-grid,
  .bw-stats {
    grid-template-columns: 1fr;
  }

  .bw-hero h1 {
	font-size: var(--h4-size) !important;
  }
.bw-hero > .container p, .bw-hero .col-lg-6 > p {
	
	font-size: 15px;

}
  .bw-hero-chip {
    font-size: 12px;
    padding: 8px 10px;
  }

  .bw-hero-chip-3 {
    display: none;
  }

  .bw-final-card {
    padding: 44px 20px;
  }

  .bw-final-actions .bw-btn {
    width: 100%;
  }

  .bw-timeline-section,
  .bw-why,
  .bw-testimonials,
  .bw-faq-section {
    padding: 64px 0;
  }
}
