/* =====================================================
   DIGIBAZARS — COMPONENTS
   Navbar, Buttons, Cards, Badges, Modals, Forms
   ===================================================== */

/* ════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════ */
#main-navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--db-border);
  padding: 0.65rem 0;
  transition: box-shadow var(--transition-base), padding var(--transition-base);
}

#main-navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.4rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0;
}

.navbar-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--db-text);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: var(--space-3);
  right: var(--space-3);
  height: 2px;
  background: var(--db-orange);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--db-orange);
  background: var(--db-orange-50);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* ── Navbar Actions ── */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.navbar-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: transparent;
  border: 1px solid var(--db-border);
  color: var(--db-text);
  font-size: var(--fs-md);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.navbar-icon-btn:hover {
  background: var(--db-orange-50);
  border-color: var(--db-orange-100);
  color: var(--db-orange);
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.45rem 1.1rem;
  background: linear-gradient(135deg, var(--db-orange), var(--db-orange-dark));
  color: var(--db-white) !important;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
  border: none;
}

.navbar-cta:hover {
  background: linear-gradient(135deg, var(--db-orange-dark), var(--db-orange));
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}

/* ── Mobile Navbar ── */
.navbar-toggler {
  border: 1px solid var(--db-border);
  border-radius: var(--radius-md);
  padding: 0.4rem 0.6rem;
  color: var(--db-text);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px var(--db-orange-100);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234A4A4A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile offcanvas-style dropdown */
@media (max-width: 991.98px) {
  .navbar-collapse {
    border-top: 1px solid var(--db-border);
    margin-top: var(--space-2);
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
  }

  .navbar-nav .nav-link {
    padding: var(--space-3) var(--space-2);
    border-radius: var(--radius-sm);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-actions {
    margin-top: var(--space-3);
    padding-top: var(--space-3);
    border-top: 1px solid var(--db-border);
  }

  .navbar-cta {
    width: 100%;
    justify-content: center;
  }
}


/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn {
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: var(--fs-base);
}

.btn-sm {
  padding: 0.35rem 0.85rem;
  font-size: var(--fs-sm);
}

.btn-db-orange {
  background: linear-gradient(135deg, var(--db-orange), var(--db-orange-dark));
  color: var(--db-white);
  border: none;
  box-shadow: var(--shadow-sm);
}

.btn-db-orange:hover {
  background: linear-gradient(135deg, var(--db-orange-dark), var(--db-orange));
  color: var(--db-white);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.btn-db-orange:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-db-blue {
  background: linear-gradient(135deg, var(--db-blue), var(--db-blue-dark));
  color: var(--db-white);
  border: none;
}

.btn-db-blue:hover {
  background: linear-gradient(135deg, var(--db-blue-dark), var(--db-blue));
  color: var(--db-white);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}

.btn-db-outline-orange {
  background: transparent;
  color: var(--db-orange);
  border: 2px solid var(--db-orange);
}

.btn-db-outline-orange:hover {
  background: var(--db-orange);
  color: var(--db-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-db-outline-white {
  background: transparent;
  color: var(--db-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-db-outline-white:hover {
  background: var(--db-white);
  color: var(--db-orange);
  border-color: var(--db-white);
}

.btn-db-white {
  background: var(--db-white);
  color: var(--db-orange);
  border: none;
  box-shadow: var(--shadow-sm);
}

.btn-db-white:hover {
  background: var(--db-surface-2);
  color: var(--db-orange-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════
   PRODUCT CARDS
   ════════════════════════════════════════ */
.product-card {
  background: var(--db-surface);
  border: 1px solid var(--db-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--db-orange-100);
}

/* Image wrapper */
.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--db-surface-2);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

/* Discount badge */
.product-discount {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: linear-gradient(135deg, var(--db-orange), var(--db-orange-dark));
  color: var(--db-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

/* Quick view overlay */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay-btn {
  background: var(--db-white);
  color: var(--db-text);
  border: none;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.product-overlay-btn:hover {
  background: var(--db-orange);
  color: var(--db-white);
}

/* Card body */
.product-body {
  padding: var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--db-blue);
  margin-bottom: var(--space-2);
  display: inline-block;
}

.product-title {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--db-text);
  margin-bottom: var(--space-2);
  line-height: var(--lh-snug);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-description {
  font-size: var(--fs-sm);
  color: var(--db-muted);
  margin-bottom: var(--space-3);
  line-height: var(--lh-relaxed);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Rating placeholder */
.product-rating {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars i {
  font-size: 0.75rem;
  color: #FBB612;
}

.rating-label {
  font-size: var(--fs-xs);
  color: var(--db-muted);
  font-style: italic;
}

/* Pricing */
.product-pricing {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.product-sale-price {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  color: var(--db-orange);
  line-height: 1;
}

.product-regular-price {
  font-size: var(--fs-sm);
  color: var(--db-muted);
  text-decoration: line-through;
  line-height: 1;
}

/* Card footer actions */
.product-actions {
  display: flex;
  gap: var(--space-2);
}

.product-buy-button {
  flex: 1;
  background: linear-gradient(135deg, var(--db-orange), var(--db-orange-dark));
  color: var(--db-white);
  border: none;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.product-buy-button:hover {
  background: linear-gradient(135deg, var(--db-orange-dark), var(--db-orange));
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}

.product-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--db-border);
  background: transparent;
  color: var(--db-muted);
  cursor: pointer;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.product-view-btn:hover {
  background: var(--db-blue-50);
  border-color: var(--db-blue-100);
  color: var(--db-blue);
}

/* ── Product placeholder image ── */
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--db-surface-2), var(--db-border));
  color: var(--db-muted);
  gap: var(--space-2);
}

.product-img-placeholder i {
  font-size: 2rem;
}

.product-img-placeholder span {
  font-size: var(--fs-xs);
}


/* ════════════════════════════════════════
   CATEGORY CARDS
   ════════════════════════════════════════ */
.category-card {
  background: var(--db-surface);
  border: 1px solid var(--db-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  color: inherit;
}

.category-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: transform var(--transition-spring);
}

.category-card:hover .category-icon-wrap {
  transform: scale(1.12) rotate(-3deg);
}

.category-name {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--db-text);
  margin: 0;
}

.category-desc {
  font-size: var(--fs-sm);
  color: var(--db-muted);
  margin: 0;
  line-height: var(--lh-relaxed);
}

.category-cta {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--transition-base);
  margin-top: auto;
}

.category-card:hover .category-cta {
  gap: var(--space-2);
}

/* Unique colors per category */
.category-card-orange {
  border-top: 3px solid var(--db-orange);
}

.category-card-orange .category-icon-wrap {
  background: var(--db-orange-50);
  color: var(--db-orange);
}

.category-card-orange .category-cta {
  color: var(--db-orange);
}

.category-card-orange:hover {
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.12);
}

.category-card-blue {
  border-top: 3px solid var(--db-blue);
}

.category-card-blue .category-icon-wrap {
  background: var(--db-blue-50);
  color: var(--db-blue);
}

.category-card-blue .category-cta {
  color: var(--db-blue);
}

.category-card-blue:hover {
  box-shadow: 0 8px 28px rgba(0, 159, 227, 0.12);
}

.category-card-purple {
  border-top: 3px solid var(--db-purple);
}

.category-card-purple .category-icon-wrap {
  background: var(--db-purple-50);
  color: var(--db-purple);
}

.category-card-purple .category-cta {
  color: var(--db-purple);
}

.category-card-purple:hover {
  box-shadow: 0 8px 28px rgba(142, 36, 170, 0.12);
}

.category-card-green {
  border-top: 3px solid var(--db-green);
}

.category-card-green .category-icon-wrap {
  background: var(--db-green-50);
  color: var(--db-green-dark);
}

.category-card-green .category-cta {
  color: var(--db-green-dark);
}

.category-card-green:hover {
  box-shadow: 0 8px 28px rgba(139, 207, 31, 0.15);
}

.category-card-teal {
  border-top: 3px solid var(--db-teal);
}

.category-card-teal .category-icon-wrap {
  background: var(--db-teal-50);
  color: var(--db-teal);
}

.category-card-teal .category-cta {
  color: var(--db-teal);
}

.category-card-teal:hover {
  box-shadow: 0 8px 28px rgba(0, 166, 166, 0.12);
}

.category-card-dark {
  border-top: 3px solid var(--db-dark);
}

.category-card-dark .category-icon-wrap {
  background: rgba(74, 74, 74, 0.08);
  color: var(--db-dark);
}

.category-card-dark .category-cta {
  color: var(--db-dark);
}


/* ════════════════════════════════════════
   TRUST / FEATURE ITEMS
   ════════════════════════════════════════ */
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--db-surface);
  border: 1px solid var(--db-border);
  transition: all var(--transition-base);
}

.trust-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.trust-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--db-text);
  margin: 0;
}

.trust-desc {
  font-size: var(--fs-sm);
  color: var(--db-muted);
  margin: 0;
  line-height: var(--lh-relaxed);
}

/* ════════════════════════════════════════
   TESTIMONIAL CARDS
   ════════════════════════════════════════ */
.testimonial-card {
  background: var(--db-surface);
  border: 1px solid var(--db-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial-quote {
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  font-size: 4rem;
  color: var(--db-orange-100);
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.testimonial-text {
  font-size: var(--fs-sm);
  color: var(--db-text);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}

.testimonial-stars i {
  color: #FBB612;
  font-size: 0.875rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--db-surface-2);
  border: 2px solid var(--db-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--db-muted);
  overflow: hidden;
}

.testimonial-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--db-text);
  margin: 0;
}

.testimonial-role {
  font-size: var(--fs-xs);
  color: var(--db-muted);
  margin: 0;
}

/* ════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════ */
.faq-accordion .accordion-item {
  border: 1px solid var(--db-border);
  border-radius: var(--radius-md) !important;
  margin-bottom: var(--space-3);
  overflow: hidden;
  background: var(--db-surface);
}

.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--db-text);
  background: var(--db-surface);
  padding: var(--space-5) var(--space-6);
  box-shadow: none;
  border-radius: var(--radius-md) !important;
  gap: var(--space-3);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--db-orange);
  background: var(--db-orange-50);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234A4A4A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  margin-left: auto;
  flex-shrink: 0;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  font-size: var(--fs-sm);
  color: var(--db-muted);
  line-height: var(--lh-relaxed);
  padding: 0 var(--space-6) var(--space-5);
  background: var(--db-orange-50);
}

/* ════════════════════════════════════════
   MODALS
   ════════════════════════════════════════ */
.db-modal .modal-content {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.db-modal .modal-header {
  background: linear-gradient(135deg, var(--db-orange-50), var(--db-blue-50));
  border-bottom: 1px solid var(--db-border);
  padding: var(--space-5) var(--space-6);
}

.db-modal .modal-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--db-text);
}

.db-modal .modal-body {
  padding: var(--space-6);
}

.db-modal .modal-footer {
  border-top: 1px solid var(--db-border);
  padding: var(--space-4) var(--space-6);
}

.db-modal .btn-close {
  filter: none;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.db-modal .btn-close:hover {
  opacity: 1;
}

/* Product detail modal image */
.modal-product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--db-surface-2);
}

.modal-product-category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--db-blue);
  margin-bottom: var(--space-2);
}

.modal-product-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--db-text);
  margin-bottom: var(--space-3);
  line-height: var(--lh-snug);
}

.modal-pricing {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.modal-sale-price {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--db-orange);
}

.modal-regular-price {
  font-size: var(--fs-base);
  color: var(--db-muted);
  text-decoration: line-through;
}

.modal-discount-badge {
  background: linear-gradient(135deg, var(--db-orange), var(--db-orange-dark));
  color: var(--db-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.modal-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.modal-includes-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--db-text);
}

.modal-includes-list i {
  color: var(--db-green-dark);
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

/* ── Email/Buy Modal ── */
.email-modal-product-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--db-surface-2);
  flex-shrink: 0;
}

.email-modal-price-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.email-modal-sale {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  color: var(--db-orange);
}

.email-modal-regular {
  font-size: var(--fs-sm);
  color: var(--db-muted);
  text-decoration: line-through;
}

.form-control-db {
  border: 1.5px solid var(--db-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  font-size: var(--fs-base);
  color: var(--db-text);
  background: var(--db-surface);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-control-db:focus {
  border-color: var(--db-orange);
  box-shadow: 0 0 0 3px var(--db-orange-100);
  outline: none;
}

.form-control-db.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.form-label-db {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--db-text);
  margin-bottom: var(--space-2);
}

/* ════════════════════════════════════════
   HOW IT WORKS STEPS
   ════════════════════════════════════════ */
.step-card {
  text-align: center;
  position: relative;
  padding: var(--space-6) var(--space-4);
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--db-orange), var(--db-orange-dark));
  color: var(--db-white);
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-orange);
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-4);
  border: 2px solid var(--db-border);
  background: var(--db-surface);
  color: var(--db-orange);
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--db-text);
  margin-bottom: var(--space-2);
}

.step-desc {
  font-size: var(--fs-sm);
  color: var(--db-muted);
  line-height: var(--lh-relaxed);
  margin: 0;
}

/* Step connector line on desktop */
.steps-wrapper {
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 80px;
  left: calc(16.666% + 40px);
  right: calc(16.666% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--db-orange), var(--db-blue), var(--db-purple));
  opacity: 0.3;
  z-index: 0;
}

@media (max-width: 767.98px) {
  .steps-wrapper::before {
    display: none;
  }
}

/* ════════════════════════════════════════
   PRICING / OFFER CARD
   ════════════════════════════════════════ */
.offer-price-card {
  background: var(--db-surface);
  border: 2px solid var(--db-orange-100);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--db-orange), var(--db-blue), var(--db-purple));
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, var(--db-orange), var(--db-orange-dark));
  color: var(--db-white);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.offer-regular-price {
  font-size: var(--fs-lg);
  color: var(--db-muted);
  text-decoration: line-through;
  margin-bottom: var(--space-2);
}

.offer-sale-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: var(--fw-extrabold);
  color: var(--db-orange);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.offer-savings {
  background: var(--db-green-50);
  color: var(--db-green-dark);
  border: 1px solid var(--db-green-100);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  display: inline-block;
  margin-bottom: var(--space-6);
}

/* ════════════════════════════════════════
   PROMOTIONAL BANNER COMPONENT
   (WordPress-ready: data-wp-field attributes)
   ════════════════════════════════════════ */
.promo-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  padding: var(--space-8) var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(0, 159, 227, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.promo-banner-content {
  position: relative;
  z-index: 1;
}

.promo-banner-eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--db-orange);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.promo-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--fw-extrabold);
  color: var(--db-white);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-2);
}

.promo-banner-subtitle {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.promo-banner-actions {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .promo-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-6);
  }

  .promo-banner-actions {
    width: 100%;
  }

  .promo-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
}