/**
 * Dedicated WooCommerce, Mobile App Kit & Ajax Cart Drawer Styling for dzabanomid
 * Theme Colors: Navy (#0b1d3a) / Royal Blue (#0284c7) / White (#ffffff)
 */

/* ==========================================================================
   1. MOBILE APP KIT & BOTTOM FLOATING BAR (<= 992px)
   ========================================================================== */
.dz-mobile-app-nav {
  display: none;
  position: fixed;
  bottom: 8px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: calc(100% - 16px);
  max-width: 460px;
  background: rgba(11, 29, 58, 0.97);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(2, 132, 199, 0.45);
  border-radius: 22px;
  z-index: 9999;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  flex-direction: column;
  overflow: hidden;
}

@media (max-width: 992px) {
  .dz-mobile-app-nav {
    display: flex;
  }
  body {
    padding-bottom: 88px;
  }
  body.single-product,
  body.dz-app-product {
    padding-bottom: 168px !important;
  }
  body.dz-app-product .dz-floating-dock,
  body.single-product .dz-floating-dock {
    display: none !important;
  }
}

/* Upper Single Product Buy Panel */
.dz-mobile-buy-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  background: #ffffff;
  border-bottom: 1px dashed rgba(2, 132, 199, 0.35);
}
.dz-buy-price-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 0 1 auto;
}
.dz-buy-price-label {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 700;
}
.dz-buy-price-val {
  font-size: 0.92rem;
  font-weight: 900;
  color: #0284c7;
  line-height: 1.25;
}
.dz-buy-price-val del {
  display: none;
}
.dz-buy-price-val .woocommerce-Price-amount {
  color: #0284c7;
  font-weight: 900;
}
.dz-buy-cart-form {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}
.dz-buy-qty-wrap {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  height: 36px;
  padding: 0 2px;
}
.dz-buy-qty-btn {
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0b1d3a;
  width: 28px;
  height: 32px;
  cursor: pointer;
  line-height: 1;
}
.dz-buy-qty-input {
  width: 28px;
  text-align: center;
  background: none;
  border: none;
  font-weight: 800;
  font-size: 0.88rem;
  color: #0b1d3a;
  -moz-appearance: textfield;
}
.dz-buy-qty-input::-webkit-outer-spin-button,
.dz-buy-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.dz-buy-add-btn {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  border: none;
  border-radius: 14px;
  height: 36px;
  padding: 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
  white-space: nowrap;
}
.dz-buy-add-btn .dz-svg-icon {
  width: 15px;
  height: 15px;
}
.dz-buy-oos {
  font-size: 0.8rem;
  font-weight: 800;
  color: #b91c1c;
  background: #fef2f2;
  border-radius: 12px;
  padding: 0.45rem 0.75rem;
}

/* Lower 5 App Tabs */
.dz-mobile-nav-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 54px;
  padding: 0 0.2rem;
}
.dz-mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  gap: 0.25rem;
  position: relative;
  flex: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dz-mobile-nav-item .dz-svg-icon {
  width: 20px;
  height: 20px;
}
.dz-mobile-nav-item:hover, .dz-mobile-nav-item.active {
  color: #38bdf8;
}
.dz-mobile-cart-badge {
  position: absolute;
  top: -4px;
  right: 22%;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0b1d3a;
}

/* PWA Prompt Banner */
.dz-pwa-install-banner {
  position: fixed;
  bottom: 85px;
  left: 15px;
  right: 15px;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(11, 29, 58, 0.95);
  backdrop-filter: blur(16px);
  border: 1.5px solid #0284c7;
  border-radius: 16px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  z-index: 99998;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  animation: dzSlideUp 0.35s ease;
}
.dz-pwa-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.dz-pwa-icon {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.dz-pwa-text {
  display: flex;
  flex-direction: column;
}
.dz-pwa-text strong {
  font-size: 0.85rem;
  color: #ffffff;
}
.dz-pwa-text span {
  font-size: 0.7rem;
  color: #94a3b8;
}
.dz-pwa-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dz-pwa-btn {
  background: #0284c7;
  color: #ffffff;
  border: none;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}
.dz-pwa-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   2. CATEGORY OFF-CANVAS DRAWER
   ========================================================================== */
.dz-cat-overlay, .dz-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 29, 58, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.dz-cat-overlay.active, .dz-cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.dz-cat-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  bottom: 0;
  width: 320px;
  max-width: 85%;
  background: #ffffff;
  z-index: 10000045;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.dz-cat-drawer.active {
  right: 0;
}
.dz-cat-drawer-header {
  padding: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
}
.dz-cat-close-btn, .dz-cart-drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
}
.dz-cat-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}
.dz-cat-tree-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.dz-cat-tree-link-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border-radius: var(--dz-radius-sm);
  border: 1px solid #e2e8f0;
  padding: 0.35rem 0.5rem;
}
.dz-cat-tree-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #0b1d3a;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  flex: 1;
}
.dz-cat-tree-link .dz-svg-icon {
  color: #0284c7;
}
.dz-cat-count-badge {
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 10px;
}
.dz-cat-toggle-btn {
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 0.9rem;
}
.dz-cat-sub-tree-list {
  list-style: none;
  padding-right: 1.5rem;
  margin-top: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.dz-cat-sub-tree-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #475569;
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
}
.dz-cat-sub-tree-list li a:hover {
  background: #f0f9ff;
  color: #0284c7;
}

/* ==========================================================================
   3. SLIDE-OVER AJAX MINI CART DRAWER
   ========================================================================== */
.dz-ajax-cart-drawer {
  position: fixed;
  top: 0;
  left: -420px;
  bottom: 0;
  width: 390px;
  max-width: 90%;
  background: #ffffff;
  z-index: 10000045;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.dz-ajax-cart-drawer.active {
  left: 0;
}
.dz-cart-drawer-header {
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dz-cart-drawer-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.dz-drawer-count-badge {
  background: #0284c7;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 12px;
}
.dz-cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.dz-ajax-cart-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Free Shipping Progress Box */
.dz-free-shipping-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-bottom: 1px solid #bae6fd;
  padding: 0.85rem 1.25rem;
}
.dz-free-shipping-msg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #0b1d3a;
  margin-bottom: 0.5rem;
}
.dz-free-shipping-msg.dz-success {
  color: #065f46;
}
.dz-progress-bar {
  height: 6px;
  background: #cbd5e1;
  border-radius: 6px;
  overflow: hidden;
}
.dz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  border-radius: 6px;
  transition: width 0.4s ease;
}

/* Cart Items in Drawer */
.dz-cart-items-list {
  list-style: none;
  padding: 1rem 1.25rem;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dz-cart-item-row {
  display: flex;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}
.dz-cart-item-thumb {
  width: 65px;
  height: 85px;
  flex-shrink: 0;
  border-radius: var(--dz-radius-xs);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.dz-cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dz-cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dz-cart-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.3rem;
}
.dz-cart-item-title a {
  color: #0b1d3a;
  text-decoration: none;
}
.dz-cart-item-title a:hover {
  color: #0284c7;
}
.dz-cart-item-price-unit {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0284c7;
}
.dz-cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.dz-drawer-qty-stepper {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
}
.dz-drawer-qty-btn {
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 800;
  width: 24px;
  height: 24px;
  color: #0b1d3a;
  cursor: pointer;
}
.dz-drawer-qty-val {
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0 6px;
  color: #0b1d3a;
}
.dz-drawer-remove-btn {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 4px;
  font-size: 0.9rem;
}

/* Cart Drawer Footer */
.dz-cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.dz-drawer-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: #334155;
  margin-bottom: 1rem;
}
.dz-drawer-total-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0284c7;
}
.dz-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dz-btn-drawer-checkout {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.75rem 1rem;
  border-radius: var(--dz-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}
.dz-btn-drawer-checkout:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
}
.dz-btn-drawer-viewcart {
  background: #ffffff;
  color: #0b1d3a;
  border: 1px solid #cbd5e1;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1rem;
  border-radius: var(--dz-radius-sm);
  text-align: center;
  text-decoration: none;
}
.dz-btn-drawer-viewcart:hover {
  border-color: #0284c7;
  color: #0284c7;
}

/* Empty State */
.dz-cart-empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.dz-empty-icon-wrap {
  width: 64px;
  height: 64px;
  background: #f0f9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.dz-cart-empty-state h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0b1d3a;
}
.dz-cart-empty-state p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.6;
}
.dz-btn-empty-shop {
  background: #0284c7;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--dz-radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   4. SINGLE PRODUCT PAGE STYLING
   ========================================================================== */
.dz-single-product-page {
  padding: 1.5rem 0 4rem;
  background:
    radial-gradient(900px 260px at 0% 0%, rgba(2, 132, 199, 0.07), transparent 55%),
    linear-gradient(180deg, #f7f0e6 0%, #f8fafc 220px);
}
.dz-product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.dz-product-breadcrumb a {
  color: #475569;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.dz-product-breadcrumb a:hover {
  color: #0284c7;
}
.dz-bc-sep {
  color: #cbd5e1;
  font-size: 0.75rem;
}
.dz-bc-current {
  color: #0b1d3a;
  font-weight: 700;
}

.dz-product-hero-grid,
.dz-pdp-hero {
  display: grid;
  grid-template-columns: minmax(320px, 400px) minmax(0, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .dz-product-hero-grid,
  .dz-pdp-hero {
    grid-template-columns: 1fr;
  }
}

.dz-pdp-stage {
  background:
    radial-gradient(ellipse at top, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(180deg, #f7f0e6 0%, #efe4d3 100%);
  border-radius: 22px;
  border: 1px solid #e8dcc8;
  padding: 1.5rem 1.25rem 1.15rem;
  box-shadow: 0 18px 40px rgba(11, 29, 58, 0.08);
  position: sticky;
  top: 96px;
}
.dz-pdp-badges,
.dz-product-floating-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.85rem;
}
.dz-badge-guarantee {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.dz-badge-discount {
  background: #dc2626;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
}
.dz-pdp-book {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin-bottom: 1rem;
  perspective: 900px;
}
.dz-main-cover-img {
  max-height: 420px;
  width: auto;
  max-width: 78%;
  border-radius: 3px 10px 10px 3px;
  object-fit: contain;
  transform: rotateY(-10deg) translateZ(0);
  box-shadow:
    -10px 0 0 -6px #d6c4a8,
    -18px 14px 28px rgba(11, 29, 58, 0.22);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.dz-pdp-book:hover .dz-main-cover-img {
  transform: rotateY(-4deg) translateY(-4px);
}
.dz-gallery-thumbs-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.dz-thumb-btn {
  width: 52px;
  height: 68px;
  padding: 0;
  border: 1.5px solid #d9cbb6;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}
.dz-thumb-btn img,
.dz-thumb-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dz-thumb-btn.is-active,
.dz-thumb-btn:hover,
.dz-thumb-item:hover {
  border-color: #0284c7;
}
.dz-pdp-trust,
.dz-product-guarantee-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(11, 29, 58, 0.08);
}
.dz-pdp-trust li,
.dz-g-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.72rem;
  color: #57534e;
  gap: 0.3rem;
  font-weight: 700;
}
.dz-pdp-trust .dz-svg-icon,
.dz-g-item .dz-svg-icon {
  color: #0284c7;
}

.dz-pdp-buybox,
.dz-product-card-box {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e8edf3;
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: 0 10px 30px rgba(11, 29, 58, 0.06);
}
.dz-pdp-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 0.2px;
}
.dz-product-main-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: #0b1d3a;
  line-height: 1.4;
  margin-bottom: 0.85rem;
}
.dz-pdp-meta,
.dz-product-quick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}
.dz-pdp-meta span,
.dz-meta-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  font-size: 0.8rem;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
}
.dz-stock-status.in-stock {
  background: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}
.dz-stock-status.out-of-stock {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}

.dz-pdp-specs-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  padding: 0.75rem;
  border-radius: 14px;
  background: rgba(2, 132, 199, 0.06);
  border: 1px solid rgba(2, 132, 199, 0.18);
}
.dz-spec-pill {
  text-align: center;
  padding: 0.15rem 0.2rem;
  border-right: 1px solid rgba(2, 132, 199, 0.15);
}
.dz-spec-pill:last-child {
  border-right: 0;
}
.dz-spec-pill small {
  display: block;
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.dz-spec-pill strong {
  display: block;
  font-size: 0.78rem;
  color: #0b1d3a;
  font-weight: 900;
  line-height: 1.35;
}
.dz-pdp-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 1rem 0 1.1rem;
  padding: 0.85rem 0.5rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  text-align: center;
}
.dz-pdp-trust-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: #0b1d3a;
}
.dz-pdp-trust-row .dz-svg-icon {
  width: 18px;
  height: 18px;
  color: #0284c7;
}
.dz-pdp-share-btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dz-pdp-share-btn .dz-svg-icon {
  width: 16px;
  height: 16px;
}

.dz-pdp-price,
.dz-product-price-section {
  background: linear-gradient(180deg, #fffdf8 0%, #f8fafc 100%);
  border-radius: 16px;
  border: 1px solid #efe4d3;
  padding: 1rem 1.2rem;
  margin-bottom: 1.15rem;
}
.dz-price-old-val {
  display: block;
  font-size: 0.95rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 0.15rem;
}
.dz-price-curr-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.dz-price-from {
  font-size: 0.95rem;
  font-weight: 800;
  color: #64748b;
}
.dz-price-curr-val {
  font-size: 2rem;
  font-weight: 900;
  color: #0b1d3a;
  letter-spacing: -0.03em;
}
.dz-currency {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
}
.dz-pdp-price-hint {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: #78716c;
  font-weight: 600;
}
.dz-partner-price-badge {
  margin-top: 0.75rem;
  background: #f0fdf4;
  border: 1px dashed #86efac;
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
  color: #15803d;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dz-single-cart-wrap {
  margin-bottom: 1.15rem;
}
body.single-product .dz-single-cart-wrap form.cart,
body.single-product .dz-var-form.cart {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 0.9rem !important;
  margin: 0 !important;
  width: 100%;
}
body.single-product .dz-single-cart-wrap form.cart > * {
  width: 100%;
  max-width: 100%;
  flex: 0 0 auto;
}
.dz-var-select-wrap,
.dz-single-cart-wrap table.variations,
.dz-single-cart-wrap .variations select,
.dz-single-cart-wrap .reset_variations {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}
.dz-var-panel.variations {
  position: relative !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0 1rem !important;
  padding: 1rem 1rem 0.85rem !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
}
.dz-pdp-extras:empty {
  display: none;
}
.dz-pdp-extras,
.dz-single-cart-wrap .wc-pao-addons-container,
.dz-single-cart-wrap .tm-extra-product-options,
.dz-single-cart-wrap .tc-extra-product-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.7rem;
  width: 100%;
  margin: 0;
}
.dz-pdp-extras .wc-pao-addon-container,
.dz-pdp-extras .wc-pao-addon,
.dz-pdp-extras .product-addon,
.dz-single-cart-wrap .wc-pao-addon-container,
.dz-single-cart-wrap .wc-pao-addon,
.dz-single-cart-wrap .product-addon,
.dz-single-cart-wrap .addon,
.dz-single-cart-wrap .tm-epo-element {
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  border: 1.5px solid #efe4d3;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  margin: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.dz-pdp-extras .wc-pao-addon-container:has(input:checked),
.dz-pdp-extras .product-addon:has(input:checked),
.dz-single-cart-wrap .wc-pao-addon-container:has(input:checked),
.dz-single-cart-wrap .product-addon:has(input:checked) {
  border-color: #0284c7;
  background: #f0f9ff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}
.dz-single-cart-wrap .wc-pao-addon-name,
.dz-single-cart-wrap .product-addon-name,
.dz-single-cart-wrap .wc-pao-addon-container h2,
.dz-single-cart-wrap .wc-pao-addon-container .wc-pao-addon-name,
.dz-pdp-extras h3,
.dz-pdp-extras h2 {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0b1d3a;
  line-height: 1.5;
}
.dz-single-cart-wrap .wc-pao-addon-description,
.dz-single-cart-wrap .product-addon-description,
.dz-single-cart-wrap .wc-pao-addon-container .wc-pao-addon-description,
.dz-pdp-extras p {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.7;
}
.dz-pdp-extras label,
.dz-single-cart-wrap .wc-pao-addon-wrap,
.dz-single-cart-wrap .product-addon label,
.dz-single-cart-wrap .wc-pao-addon-checkbox {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0b1d3a;
  cursor: pointer;
}
.dz-pdp-extras input[type="checkbox"],
.dz-single-cart-wrap .wc-pao-addon-checkbox,
.dz-single-cart-wrap .product-addon input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #0284c7;
  flex-shrink: 0;
}
.dz-pdp-atc,
.dz-single-cart-wrap .variations_button.dz-pdp-atc {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.7rem;
  width: 100%;
  margin-top: 0.15rem;
}
.dz-var-form {
  display: block;
  width: 100%;
}
.dz-var-panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1rem 1rem 0.85rem;
  margin-bottom: 1rem;
}
.dz-var-panel-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
}
.dz-var-panel-head strong {
  font-size: 0.95rem;
  color: #0b1d3a;
}
.dz-var-panel-head span {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}
.dz-var-attr-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #334155;
  margin-bottom: 0.55rem;
}
.dz-var-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 8px;
}
.dz-var-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-height: 72px;
  padding: 0.7rem 0.8rem;
  background: #ffffff;
  border: 1.5px solid #dbe3ee;
  border-radius: 14px;
  cursor: pointer;
  text-align: right;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.dz-var-chip:hover,
.dz-var-chip:focus-visible {
  border-color: #0284c7;
  outline: none;
}
.dz-var-chip.is-selected {
  border-color: #0284c7;
  background: #f0f9ff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.16);
}
.dz-var-chip-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0b1d3a;
}
.dz-var-chip-meta {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
}
.dz-var-chip-price {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0284c7;
}
.dz-var-chip-price small {
  font-size: 0.68rem;
  color: #64748b;
}
.dz-single-cart-wrap .woocommerce-variation-price {
  display: none;
}
.dz-pdp-atc,
.dz-single-cart-wrap form.cart:not(.variations_form) {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.7rem;
}
.variations_button.dz-pdp-atc {
  width: 100%;
  margin-top: 0.15rem;
}
.dz-single-cart-wrap .quantity {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 2px 8px;
  min-height: 48px;
}
.dz-single-cart-wrap .quantity .qty {
  width: 52px;
  height: 42px;
  text-align: center;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 800;
  color: #0b1d3a;
}
.dz-pdp-atc-btn,
.dz-single-cart-wrap .single_add_to_cart_button {
  flex: 1;
  min-height: 48px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.75rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.28);
}
.dz-pdp-atc-btn:hover,
.dz-single-cart-wrap .single_add_to_cart_button:hover {
  transform: translateY(-1px);
}
.dz-pdp-atc-btn.disabled,
.dz-single-cart-wrap .single_add_to_cart_button.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.dz-btn-quick-buy {
  background: #0b1d3a;
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}
.dz-btn-quick-buy:hover {
  background: #0284c7;
}
.dz-single-cart-wrap .stock.out-of-stock,
.dz-out-of-stock-alert {
  background: #fef2f2;
  color: #b91c1c;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .dz-main-cover-img,
  .dz-pdp-atc-btn,
  .dz-var-chip,
  .dz-book-card {
    transition: none;
  }
  .dz-pdp-book:hover .dz-main-cover-img {
    transform: none;
  }
}

/* B2B Wholesale Highlight Card */
.dz-b2b-highlight-card {
  background: linear-gradient(135deg, #0b1d3a 0%, #123056 100%);
  border: 1px solid #1e3a5f;
  border-radius: 16px;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.dz-b2b-card-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dz-b2b-icon {
  width: 44px;
  height: 44px;
  background: #0284c7;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dz-b2b-card-right h5 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.2rem;
}
.dz-b2b-card-right p {
  font-size: 0.78rem;
  color: #cbd5e1;
  margin: 0;
}
.dz-btn-b2b-link {
  background: #0284c7;
  color: #ffffff !important;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.55rem 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
}

/* Tabs Section */
.dz-product-tabs-section {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e8edf3;
  box-shadow: 0 12px 32px rgba(11, 29, 58, 0.05);
  margin-bottom: 2rem;
  overflow: hidden;
}
.dz-tabs-nav {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  overflow-x: auto;
}
.dz-tab-btn {
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.dz-tab-btn:hover {
  color: #0284c7;
}
.dz-tab-btn.active {
  color: #0284c7;
  border-bottom-color: #0284c7;
  background: #ffffff;
}
.dz-tabs-content {
  padding: 2rem;
}
.dz-tab-pane {
  display: none;
}
.dz-tab-pane.active {
  display: block;
  animation: dzFadeDown 0.25s ease;
}
.dz-specs-table {
  width: 100%;
  border-collapse: collapse;
}
.dz-specs-table th, .dz-specs-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  text-align: right;
  font-size: 0.9rem;
}
.dz-specs-table th {
  width: 250px;
  background: #f8fafc;
  color: #0b1d3a;
  font-weight: 700;
}
.dz-specs-table td {
  color: #334155;
  font-weight: 500;
}
.dz-related-books-section {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 20px;
  padding: 1.2rem 1.25rem 0.4rem;
  box-shadow: 0 12px 32px rgba(11, 29, 58, 0.05);
}
.dz-related-books-section .dz-books-grid {
  margin-bottom: 1.1rem;
}
@media (max-width: 900px) {
  .dz-b2b-highlight-card {
    flex-direction: column;
    align-items: stretch;
  }
  .dz-btn-b2b-link {
    justify-content: center;
  }
}

/* ==========================================================================
   5. ARCHIVE & SHOP PAGE STYLING
   ========================================================================== */
.dz-shop-archive-page {
  padding: 2rem 0 4rem;
  background: #f8fafc;
}
.dz-archive-hero-card {
  background: linear-gradient(135deg, #0b1d3a 0%, #152e52 50%, #0f2744 100%);
  border-radius: var(--dz-radius-lg);
  padding: 2.25rem 2rem;
  color: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(11, 29, 58, 0.2);
  gap: 1.5rem;
}
.dz-archive-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.dz-archive-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 750px;
}
.dz-total-books-count {
  background: rgba(2, 132, 199, 0.25);
  border: 1px solid #0284c7;
  color: #38bdf8;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.dz-shop-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}
.dz-shop-layout-grid--full {
  grid-template-columns: 1fr;
}
.dz-shop-partner-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin-bottom: 1.15rem;
}
.dz-shop-partner-strip-copy {
  flex: 1;
  min-width: 200px;
}
.dz-shop-partner-strip-copy h4 {
  margin: 0 0 0.25rem;
}
.dz-shop-partner-strip-copy p {
  margin: 0;
}
@media (max-width: 900px) {
  .dz-shop-layout-grid {
    grid-template-columns: 1fr;
  }
  .dz-shop-partner-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

.dz-sidebar-widget {
  background: #ffffff;
  border-radius: var(--dz-radius-md);
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.dz-widget-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0b1d3a;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid #e0f2fe;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.dz-widget-title .dz-svg-icon {
  color: #0284c7;
}
.dz-sidebar-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.dz-sidebar-cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.dz-sidebar-cat-list li a:hover, .dz-sidebar-cat-list li.active a {
  background: #f0f9ff;
  color: #0284c7;
}
.dz-cat-pill-count {
  background: #f1f5f9;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  color: #64748b;
}

.dz-sidebar-promo-card {
  background: linear-gradient(145deg, #0b1d3a 0%, #152e52 100%);
  border-radius: var(--dz-radius-md);
  padding: 1.5rem;
  color: #ffffff;
}
.dz-sidebar-promo-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0.5rem 0;
  color: #ffffff;
}
.dz-sidebar-promo-card p {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.dz-btn-sidebar-b2b {
  background: #10b981;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Shop Toolbar */
.dz-shop-toolbar {
  background: #ffffff;
  border-radius: var(--dz-radius-md);
  border: 1px solid #e2e8f0;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}
.dz-shop-toolbar select {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  color: #0b1d3a;
  font-weight: 600;
}

/* Pagination */
.dz-pagination-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.dz-pagination-wrap ul {
  list-style: none;
  display: flex;
  gap: 6px;
}
.dz-pagination-wrap a, .dz-pagination-wrap span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  font-weight: 800;
  font-size: 0.9rem;
  color: #0b1d3a;
  text-decoration: none;
}
.dz-pagination-wrap span.current {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

/* ==========================================================================
   6. CART & CHECKOUT PAGE STYLING
   ========================================================================== */
.dz-page-heading-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #0b1d3a;
  margin-bottom: 1.5rem;
}
.dz-cart-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 1.5rem;
  align-items: start;
}
.dz-checkout-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 42%);
  gap: 1.75rem;
  align-items: start;
}
@media (max-width: 1100px) {
  .dz-checkout-layout-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 46%);
  }
}
@media (max-width: 960px) {
  .dz-cart-layout-grid,
  .dz-checkout-layout-grid {
    grid-template-columns: 1fr;
  }
}

.dz-free-shipping-card {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.dz-free-shipping-card.dz-success {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.dz-free-shipping-card p {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: #64748b;
}
.dz-cart-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 900;
  color: #0b1d3a;
}
.dz-cart-section-label em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0284c7;
  background: #f0f9ff;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}
.dz-cart-items-wrapper {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e8edf3;
  box-shadow: 0 12px 32px rgba(11, 29, 58, 0.05);
  padding: 0.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.15rem;
}
.dz-cart-row-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.dz-cart-row-item:last-child {
  border-bottom: none;
}
.dz-cart-item-img {
  width: 78px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f7f0e6 0%, #efe6d8 100%);
  border-radius: 12px;
  overflow: hidden;
}
.dz-cart-item-img img {
  width: auto;
  max-width: 68px;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: 0 8px 16px rgba(11, 29, 58, 0.14);
}
.dz-cart-item-name {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  line-height: 1.5;
}
.dz-cart-item-name a {
  color: #0b1d3a;
  text-decoration: none;
}
.dz-cart-item-name a:hover {
  color: #0284c7;
}
.dz-cart-partner-pill {
  display: inline-block;
  margin: 0 0 0.35rem;
  background: #0b1d3a;
  color: #7dd3fc;
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 2px 8px;
}
.dz-cart-item-main-info .variation {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0.2rem 0 0.4rem;
}
.dz-cart-item-main-info .variation dt {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.dz-cart-item-main-info .variation dd {
  margin: 0;
  background: #f0f9ff;
  color: #0369a1;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 800;
}
.dz-cart-unit-price {
  font-size: 0.8rem;
  color: #64748b;
}
.dz-cart-unit-price .woocommerce-Price-amount {
  font-weight: 800;
  color: #0b1d3a;
}
.dz-cart-item-qty-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}
.dz-cart-item-subtotal-val {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 900;
  color: #0284c7;
  font-size: 0.95rem;
  min-width: 5.5rem;
}
.dz-cart-item-subtotal-val span {
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
}
.dz-cart-remove-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}
.dz-cart-remove-link:hover {
  color: #dc2626;
}
.dz-cart-remove-link .dz-svg-icon {
  width: 16px;
  height: 16px;
}

.dz-cart-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  background: #fff;
  border: 1px dashed #c4b39a;
  border-radius: 16px;
  padding: 0.85rem;
}
.dz-coupon-form {
  display: flex;
  flex: 1;
  gap: 0.5rem;
  min-width: 240px;
}
.dz-coupon-input {
  flex: 1;
  background: #f8fafc;
  border: 1.5px solid #dbe3ee;
  border-radius: 12px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  min-height: 44px;
}
.dz-coupon-input:focus {
  outline: none;
  border-color: #0284c7;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}
.dz-btn-apply-coupon {
  background: #0b1d3a;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 0.65rem 1.1rem;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  min-height: 44px;
}
.dz-btn-update-cart {
  background: #fff;
  color: #0284c7;
  border: 1.5px solid #bae6fd;
  border-radius: 12px;
  padding: 0.65rem 1.1rem;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  min-height: 44px;
}

/* Order Totals Card */
.dz-cart-totals-card, .dz-checkout-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e8edf3;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 12px 32px rgba(11, 29, 58, 0.05);
}
.dz-totals-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0b1d3a;
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid #e0f2fe;
}
.dz-card-header-tag .dz-totals-title {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1.05rem;
}
.dz-card-header-tag p {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
}
.dz-totals-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  color: #475569;
}
.dz-totals-final {
  border-bottom: none;
  padding-top: 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0b1d3a;
}
.dz-final-price {
  font-size: 1.45rem;
  color: #0284c7;
  font-weight: 900;
}
.dz-btn-proceed-checkout {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.95rem 1.25rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.28);
  margin: 1.15rem 0 1rem;
  min-height: 48px;
}
.dz-btn-proceed-checkout:hover {
  transform: translateY(-1px);
}
.dz-cart-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}
.dz-ctb-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: #64748b;
}
.dz-ctb-item .dz-svg-icon {
  color: #10b981;
}

/* Checkout Step Cards */
.dz-card-header-tag {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e0f2fe;
}
.dz-step-num {
  width: 28px;
  height: 28px;
  background: #0284c7;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
}
.dz-card-header-tag h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0b1d3a;
  margin: 0;
}
.dz-checkout-security-box {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.dz-sec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}
.dz-sec-item .dz-svg-icon {
  color: #10b981;
}

/* Bookstore product cards */
.dz-book-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e8edf3;
  padding: 0.7rem 0.7rem 0.85rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.dz-book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(11, 29, 58, 0.1);
  border-color: #cfe8f8;
}
.dz-book-cover-wrap {
  position: relative;
  display: block;
  text-decoration: none;
}
.dz-book-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7f0e6 0%, #efe6d8 100%);
  margin-bottom: 0.7rem;
}
.dz-book-cover-img {
  max-height: 178px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  border-radius: 2px 8px 8px 2px;
  box-shadow: -8px 10px 18px rgba(11, 29, 58, 0.18);
}
.dz-book-badge-discount {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: #dc2626;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 999px;
}
.dz-book-badge-hot {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: #0b1d3a;
  color: #fbbf24;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
}
.dz-book-kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: #0284c7;
  margin-bottom: 0.25rem;
}
.dz-book-title {
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
  margin: 0 0 0.45rem;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dz-book-title a {
  color: #0b1d3a;
  text-decoration: none;
}
.dz-book-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 0.55rem;
}
.dz-book-format-pill {
  font-size: 0.65rem;
  font-weight: 800;
  color: #57534e;
  background: #f5efe6;
  border: 1px solid #e8dcc8;
  border-radius: 999px;
  padding: 2px 7px;
}
.dz-book-format-pill--plain {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #64748b;
}
.dz-book-price-row {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
.dz-price-old {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: line-through;
}
.dz-price-current {
  font-size: 0.95rem;
  font-weight: 900;
  color: #0b1d3a;
}
.dz-price-current em {
  font-style: normal;
  font-size: 0.72rem;
  color: #64748b;
  margin-left: 3px;
}
.dz-price-current small {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  margin-right: 2px;
}
.dz-book-add-btn {
  width: 100%;
  margin-top: 0.65rem;
  min-height: 40px;
  padding: 0.45rem 0.6rem;
  background: #0b1d3a;
  border: none;
  border-radius: 10px;
  color: #fff !important;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
}
.dz-book-card:hover .dz-book-add-btn,
.dz-book-add-btn:hover {
  background: #0284c7;
}

/* Hide Side Cart plugin chrome — theme drawer is the cart UI */
.xoo-wsc-markup,
.xoo-wsc-modal,
.xoo-wsc-basket,
.xoo-wsc-opac,
.xoo-wsc-markup-notices {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* ==========================================================================
   7. CHECKOUT REDESIGN (navy / sky / cream)
   ========================================================================== */
.dz-wc-page-shell {
  min-height: 40vh;
}
.hidden-address-field,
.hidden-country-field,
.dz-checkout-page .woocommerce-billing-fields > h3,
.dz-checkout-page .woocommerce-additional-fields > h3 {
  display: none !important;
}
.dz-ship-different {
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  padding: 0.75rem 1rem !important;
}
.dz-ship-different label {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  margin: 0 !important;
  cursor: pointer;
}

.dz-checkout-page {
  padding: 1.25rem 0 4.5rem;
  background:
    radial-gradient(1200px 280px at 100% 0%, rgba(2, 132, 199, 0.08), transparent 60%),
    linear-gradient(180deg, #f7f0e6 0%, #f8fafc 180px);
}
.dz-checkout-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.dz-checkout-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 0.02em;
}
.dz-checkout-page .dz-page-heading-title {
  margin-bottom: 0.35rem;
  font-size: 1.65rem;
}
.dz-checkout-hero-copy {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 36rem;
}
.dz-checkout-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #0b1d3a;
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.dz-checkout-hero-meta .dz-svg-icon {
  color: #7dd3fc;
  width: 18px;
  height: 18px;
}
.dz-checkout-hero-meta strong {
  font-size: 1.05rem;
  color: #7dd3fc;
}

.dz-checkout-steps {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(11, 29, 58, 0.04);
}
.dz-checkout-steps li,
.dz-checkout-steps li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
}
.dz-checkout-steps .dz-step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  background: #f8fafc;
}
.dz-checkout-steps .is-done .dz-step-dot,
.dz-checkout-steps .is-current .dz-step-dot {
  background: #0284c7;
  border-color: #0284c7;
  color: #fff;
}
.dz-checkout-steps .is-done,
.dz-checkout-steps .is-done a {
  color: #0b1d3a;
}
.dz-checkout-steps .is-current {
  color: #0284c7;
}

.dz-checkout-page .dz-free-shipping-card {
  align-items: center;
}
.dz-checkout-page .dz-free-ship-icon {
  color: #0284c7;
  display: flex;
}
.dz-checkout-page .dz-free-shipping-card.dz-success .dz-free-ship-icon {
  color: #10b981;
}
.dz-free-ship-body {
  flex: 1;
}
.dz-free-ship-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: #0b1d3a;
}

.dz-checkout-otp-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid #bae6fd;
  border-radius: 16px;
  padding: 0.95rem 1.15rem;
  margin-bottom: 1.15rem;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.06);
}
.dz-checkout-otp-copy strong {
  display: block;
  color: #0b1d3a;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}
.dz-checkout-otp-copy p {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
}
.dz-checkout-otp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #0b1d3a;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.7rem 1.05rem;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}
.dz-checkout-otp-btn:hover {
  background: #0284c7;
}

.dz-checkout-coupon-card {
  margin-bottom: 0.65rem;
}
.dz-coupon-toggle-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px dashed #c4b39a;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  color: #57534e;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
}
.dz-coupon-toggle-link .dz-svg-icon {
  color: #0284c7;
}
.dz-coupon-toggle-link .dz-svg-icon:last-child {
  margin-right: auto;
  color: #94a3b8;
}
.dz-checkout-coupon-form {
  display: flex;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  padding: 0.85rem;
  margin: 0 0 1.15rem;
}
.dz-checkout-coupon-form .form-row {
  margin: 0;
}
.dz-checkout-coupon-form .form-row-first {
  flex: 1;
}
.dz-checkout-coupon-form .input-text {
  width: 100%;
  min-height: 44px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 0 0.9rem;
}

.dz-checkout-page .dz-checkout-layout-grid {
  align-items: start;
}
.dz-checkout-review-col {
  min-width: 0;
}
.dz-checkout-page .dz-checkout-card {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 20px;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 12px 32px rgba(11, 29, 58, 0.05);
}
.dz-checkout-page .dz-review-sticky-card {
  padding: 1.5rem 1.6rem 1.7rem;
}
.dz-review-sticky-card {
  position: sticky;
  top: 88px;
  min-width: 0;
}
.dz-checkout-page .dz-card-header-tag {
  align-items: flex-start;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 1.15rem;
  padding-bottom: 0.9rem;
}
.dz-checkout-page .dz-card-header-tag h2,
.dz-checkout-page .dz-card-header-tag h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: #0b1d3a;
}
.dz-checkout-page .dz-card-header-tag p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}
.dz-checkout-page .dz-step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #0b1d3a;
}

/* Checkout fields */
.dz-checkout-page .form-row {
  margin: 0 0 0.9rem;
  padding: 0;
}
.dz-checkout-page .form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #0b1d3a;
  margin-bottom: 0.35rem;
}
.dz-checkout-page .form-row .required,
.dz-checkout-page .form-row abbr.required {
  color: #dc2626;
  text-decoration: none;
  border: 0;
}
.dz-checkout-page .form-row input.input-text,
.dz-checkout-page .form-row textarea,
.dz-checkout-page .form-row select,
.dz-checkout-page .select2-container .select2-selection--single {
  width: 100%;
  min-height: 46px;
  border: 1.5px solid #dbe3ee;
  border-radius: 12px;
  background: #f8fafc;
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
  color: #0b1d3a;
  box-shadow: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.dz-checkout-page .form-row textarea {
  min-height: 96px;
  resize: vertical;
}
.dz-checkout-page .form-row input.input-text:focus,
.dz-checkout-page .form-row textarea:focus,
.dz-checkout-page .form-row select:focus {
  outline: none;
  background: #fff;
  border-color: #0284c7;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}
.dz-checkout-page .form-row-first,
.dz-checkout-page .form-row-last {
  width: 48.5%;
  float: right;
}
.dz-checkout-page .form-row-last {
  float: left;
}
.dz-checkout-page .form-row-wide {
  width: 100%;
  clear: both;
}
.dz-checkout-page .woocommerce-billing-fields__field-wrapper::after,
.dz-checkout-page .woocommerce-shipping-fields__field-wrapper::after,
.dz-checkout-page #customer_details::after {
  content: "";
  display: table;
  clear: both;
}
.dz-checkout-page .select2-container {
  width: 100% !important;
}
.dz-checkout-page .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
}
.dz-checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #0b1d3a;
  line-height: 46px;
  padding: 0;
}
.dz-checkout-page .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
  left: 8px;
  right: auto;
}
body .select2-dropdown {
  border-color: #bae6fd;
  border-radius: 12px;
  overflow: hidden;
}
body .select2-results__option--highlighted.select2-results__option--selectable {
  background: #0284c7;
}

/* Order review */
.dz-review-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.dz-review-table thead {
  display: none;
}
.dz-review-table td,
.dz-review-table th {
  border: 0;
  padding: 0.85rem 0;
  vertical-align: middle;
  font-size: 0.86rem;
}
.dz-review-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
}
.dz-review-table .product-name {
  width: 66%;
  padding-left: 0.75rem;
}
.dz-review-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.dz-review-thumb {
  width: 56px;
  height: 74px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f7f0e6 0%, #efe6d8 100%);
  border-radius: 10px;
  overflow: hidden;
}
.dz-review-thumb img {
  max-height: 68px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
}
.dz-review-meta {
  min-width: 0;
  flex: 1;
}
.dz-review-meta a,
.dz-review-meta {
  color: #0b1d3a;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1.5;
}
.dz-review-meta a,
.dz-review-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dz-review-editable .dz-review-item {
  align-items: flex-start;
}
.dz-review-editable .product-name {
  width: 100%;
  padding-left: 0;
}
.dz-review-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-top: 0.65rem;
}
.dz-review-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.dz-checkout-qty-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: #f8fafc;
  color: #0b1d3a;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
}
.dz-checkout-qty-btn:hover {
  background: #eef6ff;
  color: #0284c7;
}
.dz-checkout-qty-input {
  width: 2.4rem;
  height: 34px;
  border: 0;
  text-align: center;
  font-weight: 800;
  font-size: 0.86rem;
  color: #0b1d3a;
  background: transparent;
  -moz-appearance: textfield;
}
.dz-checkout-qty-input::-webkit-outer-spin-button,
.dz-checkout-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.dz-review-line-total {
  font-weight: 900;
  color: #0b1d3a;
  font-size: 0.9rem;
  margin-inline-start: auto;
  white-space: nowrap;
}
.dz-checkout-remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  border: 0;
  background: transparent;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.2rem 0.15rem;
}
.dz-checkout-remove-btn:hover {
  color: #dc2626;
}
.dz-checkout-remove-btn .dz-icon,
.dz-checkout-remove-btn svg {
  width: 14px;
  height: 14px;
}
.dz-review-editable .binding-toggle-cart,
.dz-review-editable .cd-toggle-cart,
.dz-cart-page .binding-toggle-cart,
.dz-cart-page .cd-toggle-cart {
  margin-top: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.dz-review-editable .binding-toggle-cart label,
.dz-review-editable .cd-toggle-cart label,
.dz-cart-page .binding-toggle-cart label,
.dz-cart-page .cd-toggle-cart label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0.4rem 0.65rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.74rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  line-height: 1.35;
}
.dz-review-editable .binding-toggle-cart label:has(input:checked),
.dz-review-editable .cd-toggle-cart label:has(input:checked),
.dz-cart-page .binding-toggle-cart label:has(input:checked),
.dz-cart-page .cd-toggle-cart label:has(input:checked) {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0b1d3a;
}
.dz-review-editable .binding-toggle-cart input,
.dz-review-editable .cd-toggle-cart input,
.dz-cart-page .binding-toggle-cart input,
.dz-cart-page .cd-toggle-cart input {
  width: 16px;
  height: 16px;
  accent-color: #0284c7;
  margin: 0;
  flex-shrink: 0;
}
.dz-review-editable .binding-price,
.dz-review-editable .cd-price,
.dz-cart-page .binding-price,
.dz-cart-page .cd-price {
  color: #64748b;
  font-weight: 600;
}
.dz-review-editable.dz-review-busy {
  transition: opacity 0.15s ease;
}
.dz-review-meta .product-quantity {
  display: inline-block;
  margin: 0.25rem 0 0;
  color: #0284c7;
  font-size: 0.75rem;
  background: #f0f9ff;
  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 800;
}
.dz-review-meta .variation {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.3rem;
}
.dz-review-meta .variation dt {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.dz-review-meta .variation dd {
  margin: 0;
  background: #f8fafc;
  color: #475569;
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 0.7rem;
  font-weight: 700;
}
.dz-review-table .product-total {
  width: 34%;
  text-align: left;
  font-weight: 800;
  color: #0b1d3a;
  white-space: nowrap;
  vertical-align: middle;
}
.dz-review-table tfoot th,
.dz-review-table tfoot td {
  padding: 0.65rem 0;
}
.dz-review-table tfoot th {
  color: #64748b;
  font-weight: 700;
  text-align: right;
  width: 48%;
}
.dz-review-table tfoot td {
  text-align: left;
  font-weight: 800;
  color: #0b1d3a;
  width: 52%;
}
.dz-review-table .woocommerce-shipping-totals th,
.dz-review-table .woocommerce-shipping-totals td {
  display: block;
  width: 100%;
  text-align: right;
  padding: 0.45rem 0 0.2rem;
}
.dz-checkout-page ul.woocommerce-shipping-methods {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.dz-checkout-page .woocommerce-shipping-methods li {
  margin: 0;
  padding: 0.7rem 0.85rem;
  background: #f8fafc;
  border: 1.5px solid #e8edf3;
  border-radius: 12px;
}
.dz-checkout-page .woocommerce-shipping-methods li:has(input:checked) {
  border-color: #0284c7;
  background: #f0f9ff;
}
.dz-checkout-page .woocommerce-shipping-methods label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  color: #0b1d3a;
  line-height: 1.5;
}
.dz-review-table .order-total th,
.dz-review-table .order-total td {
  display: table-cell;
  width: auto;
  padding-top: 1rem;
  font-size: 1rem;
  color: #0b1d3a;
  border-top: 2px solid #e0f2fe;
}
.dz-review-table .order-total td {
  color: #0284c7;
  font-size: 1.25rem;
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
}
.dz-review-table .cart-discount td,
.dz-review-table .cart-discount td .woocommerce-Price-amount {
  color: #059669;
}

/* Payment methods */
.dz-payment-heading {
  margin: 1.25rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.95rem;
  font-weight: 900;
  color: #0b1d3a;
}
.dz-checkout-page ul.wc_payment_methods {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.dz-checkout-page .wc_payment_method {
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  overflow: hidden;
}
.dz-checkout-page .wc_payment_method > input.input-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.dz-checkout-page .wc_payment_method > label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  margin: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.88rem;
  color: #0b1d3a;
  min-width: 0;
}
.dz-checkout-page .wc_payment_method > label img,
.dz-checkout-page .dz-pay-icon {
  width: auto;
  height: 28px;
  max-width: 72px;
  max-height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
  margin: 0 0 0 auto;
  border-radius: 6px;
}
.dz-checkout-page .payment_method_dz_sayad_cheque > label img,
.dz-checkout-page .dz-pay-icon-cheque {
  width: 28px;
  height: 28px;
  max-width: 28px;
  flex: 0 0 28px;
}
.dz-checkout-page .wc_payment_method > label::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 3px #fff;
}
.dz-checkout-page .wc_payment_method:has(input:checked) {
  border-color: #0284c7;
  background: #f0f9ff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}
.dz-checkout-page .wc_payment_method:has(input:checked) > label::before {
  border-color: #0284c7;
  background: #0284c7;
  box-shadow: inset 0 0 0 3px #fff;
}
.dz-checkout-page .payment_box {
  background: #fff;
  border-top: 1px solid #e0f2fe;
  padding: 0.85rem 1rem 1rem;
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.7;
}
.dz-checkout-page .payment_box p {
  margin: 0;
}
.dz-cheque-checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.75rem;
  margin-top: 0.65rem;
}
.dz-cheque-checkout-fields .form-row {
  margin: 0;
  width: 100% !important;
  float: none !important;
  padding: 0;
}
.dz-cheque-checkout-fields .form-row-wide {
  grid-column: 1 / -1;
}
.dz-cheque-checkout-fields label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0b1d3a;
  margin-bottom: 0.25rem;
}
.dz-cheque-checkout-fields .input-text {
  width: 100%;
  min-height: 42px;
  border: 1.5px solid #dbe3ee;
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.4rem 0.7rem;
}
.dz-partner-pay-box {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 0.35rem 0 0.5rem;
}
.dz-partner-pay-box p {
  margin: 0.2rem 0;
  font-size: 0.85rem;
  color: #0b1d3a;
}
.dz-place-order-btn,
.dz-checkout-page #place_order {
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.28);
  margin-top: 0.35rem;
}
.dz-place-order-btn:hover,
.dz-checkout-page #place_order:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0b1d3a 100%);
}
.dz-checkout-page .woocommerce-terms-and-conditions-wrapper {
  margin: 0.5rem 0 0.85rem;
  font-size: 0.78rem;
  color: #64748b;
}
.dz-checkout-page .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.7;
  cursor: pointer;
}
.dz-checkout-page .woocommerce-terms-and-conditions-wrapper #terms {
  width: 16px;
  height: 16px;
  margin: 0.2rem 0 0;
  flex-shrink: 0;
  accent-color: #0284c7;
}
.dz-checkout-page .dz-checkout-security-box {
  margin-top: 1.15rem;
}

.dz-checkout-page .woocommerce-error,
.dz-checkout-page .woocommerce-message,
.dz-checkout-page .woocommerce-info,
.dz-wc-page-shell .woocommerce-error,
.dz-wc-page-shell .woocommerce-message,
.dz-wc-page-shell .woocommerce-info {
  list-style: none;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.dz-wc-page-shell .woocommerce-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.dz-wc-page-shell .woocommerce-message {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.dz-wc-page-shell .woocommerce-info {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #075985;
}

/* Empty cart / empty checkout */
.dz-cart-empty-page-wrap {
  padding: 2rem 0 4rem;
  background: linear-gradient(180deg, #f7f0e6 0%, #f8fafc 160px);
}
.dz-empty-box-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 24px;
  padding: 2.4rem 1.6rem 2rem;
  box-shadow: 0 16px 40px rgba(11, 29, 58, 0.06);
}
.dz-empty-icon-hero {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f7f0e6 0%, #efe6d8 100%);
  color: #0284c7;
}
.dz-empty-icon-hero .dz-svg-icon {
  width: 38px;
  height: 38px;
}
.dz-empty-box-inner h1,
.dz-empty-box-inner h2 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  font-weight: 900;
  color: #0b1d3a;
}
.dz-empty-box-inner p {
  margin: 0 auto 1.35rem;
  max-width: 28rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.85;
}
.dz-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.dz-btn-return-shop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  border: none;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
}
.dz-btn-return-home {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #0b1d3a;
  border: 1.5px solid #cbd5e1;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 12px;
  padding: 0.78rem 1.15rem;
}
.dz-empty-trust {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid #f1f5f9;
  margin-top: 1.4rem;
  padding-top: 1rem;
}

/* Thank you */
.dz-thankyou-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 24px;
  padding: 2rem 1.4rem;
  box-shadow: 0 16px 40px rgba(11, 29, 58, 0.06);
}
.dz-thankyou-hero {
  text-align: center;
  margin-bottom: 1.4rem;
}
.dz-thankyou-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  color: #059669;
}
.dz-thankyou-hero h1,
.dz-thankyou-failed h1 {
  margin: 0 0 0.45rem;
  font-size: 1.45rem;
  color: #0b1d3a;
}
.dz-thankyou-hero p,
.dz-thankyou-failed p {
  margin: 0 auto;
  max-width: 32rem;
  color: #64748b;
  line-height: 1.8;
}
.dz-thankyou-overview {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.dz-thankyou-overview li {
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.dz-thankyou-overview span {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 700;
}
.dz-thankyou-overview strong {
  color: #0b1d3a;
  font-size: 0.95rem;
}
.dz-thankyou-body .woocommerce-order-details,
.dz-thankyou-body .woocommerce-customer-details {
  margin-top: 1.25rem;
}
.dz-thankyou-body h2 {
  font-size: 1rem;
  color: #0b1d3a;
}

@media (max-width: 900px) {
  .dz-checkout-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .dz-checkout-steps {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0.65rem 0.5rem;
    gap: 0.2rem;
  }
  .dz-checkout-steps li,
  .dz-checkout-steps li a {
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    text-align: center;
    font-size: 0.7rem;
  }
  .dz-review-sticky-card {
    position: static;
  }
  .dz-checkout-otp-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .dz-checkout-page .form-row-first,
  .dz-checkout-page .form-row-last {
    width: 100%;
    float: none;
  }
  .dz-checkout-page #place_order,
  .dz-place-order-btn {
    position: sticky;
    bottom: 12px;
    z-index: 30;
  }
  .dz-checkout-page .wc_payment_method > label {
    font-size: 0.8rem;
    padding: 0.7rem 0.8rem;
  }
  .dz-checkout-page .wc_payment_method > label img,
  .dz-checkout-page .dz-pay-icon {
    height: 22px;
    max-height: 22px;
    max-width: 48px;
  }
  .dz-checkout-page .payment_method_dz_sayad_cheque > label img,
  .dz-checkout-page .dz-pay-icon-cheque {
    width: 22px;
    height: 22px;
    max-width: 22px;
    flex-basis: 22px;
  }
  .dz-thankyou-overview {
    grid-template-columns: 1fr;
  }
  .dz-checkout-coupon-form {
    flex-direction: column;
  }
  .dz-cheque-checkout-fields {
    grid-template-columns: 1fr;
  }
}

/* Cart page extras — aligned with checkout cream/navy */
.dz-cart-continue {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  color: #0b1d3a;
  border: 1.5px solid #dbe3ee;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(11, 29, 58, 0.04);
}
.dz-cart-continue .dz-svg-icon {
  width: 18px;
  height: 18px;
  color: #0284c7;
}
.dz-cart-continue:hover {
  border-color: #0284c7;
  color: #0284c7;
}
.dz-cart-page-qty .quantity {
  display: inline-flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #dbe3ee;
  border-radius: 12px;
  min-height: 44px;
  padding: 2px;
}
.dz-cart-page-qty .qty {
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0b1d3a;
  -moz-appearance: textfield;
}
.dz-cart-page-qty .qty::-webkit-outer-spin-button,
.dz-cart-page-qty .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.dz-qty-step {
  width: 36px;
  height: 36px;
  border: 0;
  background: #ffffff;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  color: #0b1d3a;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(11, 29, 58, 0.06);
}
.dz-qty-step:hover {
  background: #e0f2fe;
  color: #0284c7;
}
.dz-cart-page .dz-coupon-row,
.dz-cart-page .dz-coupon-row .woocommerce-Price-amount {
  color: #059669;
}
.dz-cart-mobile-dock {
  display: none;
}
.dz-cart-empty-page-wrap .dz-checkout-steps {
  max-width: 720px;
  margin: 0 auto 1.35rem;
}

.dz-app-flow-head {
  display: none;
}

@media (max-width: 992px) {
  .dz-app-flow-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 48px;
    margin: 0 0 0.85rem;
    padding: 0.15rem 0;
  }
  .dz-app-flow-back {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: #0284c7;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    min-height: 40px;
  }
  .dz-app-flow-back .dz-svg-icon {
    width: 18px;
    height: 18px;
  }
  .dz-app-flow-head > strong {
    flex: 1;
    text-align: center;
    font-size: 1.02rem;
    color: #0b1d3a;
  }
  .dz-app-flow-count {
    font-size: 0.75rem;
    font-weight: 800;
    color: #0284c7;
    background: #f0f9ff;
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    white-space: nowrap;
  }

  body.dz-app-cart .dz-main-header,
  body.dz-app-checkout .dz-main-header,
  body.dz-app-cart .dz-cart-page .dz-product-breadcrumb,
  body.dz-app-checkout .dz-checkout-page .dz-product-breadcrumb,
  body.dz-app-cart .dz-checkout-kicker,
  body.dz-app-checkout .dz-checkout-kicker,
  body.dz-app-cart .dz-checkout-hero-copy,
  body.dz-app-checkout .dz-checkout-hero-copy,
  body.dz-app-cart .dz-checkout-hero .dz-cart-continue,
  body.dz-app-checkout .dz-checkout-hero-meta,
  body.dz-app-cart .dz-cart-totals-col,
  body.dz-app-cart .dz-btn-update-cart,
  body.dz-app-cart .dz-cart-section-label,
  body.dz-app-checkout .dz-checkout-security-box,
  body.dz-app-cart .dz-floating-dock,
  body.dz-app-checkout .dz-floating-dock,
  body.dz-app-cart .dz-footer-app-actions,
  body.dz-app-checkout .dz-footer-app-actions,
  body.dz-app-cart .dz-footer-grid,
  body.dz-app-checkout .dz-footer-grid {
    display: none !important;
  }

  body.dz-app-cart .dz-checkout-hero,
  body.dz-app-checkout .dz-checkout-hero {
    display: none;
  }

  body.dz-app-cart,
  body.dz-app-checkout {
    background: #f7f0e6;
  }
  body.dz-app-checkout {
    padding-bottom: 0 !important;
  }

  .dz-app-pay-dock {
    display: contents;
  }
  .dz-app-pay-meta {
    display: none;
  }

  body.dz-app-cart .dz-checkout-steps,
  body.dz-app-checkout .dz-checkout-steps {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 0.15rem;
    padding: 0.55rem 0.4rem !important;
    margin-bottom: 0.75rem;
  }
  body.dz-app-cart .dz-checkout-steps li,
  body.dz-app-checkout .dz-checkout-steps li,
  body.dz-app-cart .dz-checkout-steps li a,
  body.dz-app-checkout .dz-checkout-steps li a {
    flex-direction: column;
    justify-content: center !important;
    gap: 0.2rem;
    font-size: 0.68rem;
    text-align: center;
  }
  body.dz-app-cart .dz-step-dot,
  body.dz-app-checkout .dz-step-dot {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  body.dz-app-cart .dz-free-shipping-card,
  body.dz-app-checkout .dz-free-shipping-card {
    padding: 0.7rem 0.85rem;
    margin-bottom: 0.75rem;
    border-radius: 14px;
    align-items: flex-start;
  }
  body.dz-app-cart .dz-free-shipping-card p,
  body.dz-app-checkout .dz-free-shipping-card p {
    display: none;
  }

  body.dz-app-cart .dz-cart-page,
  body.dz-app-checkout .dz-checkout-page {
    padding: 0.75rem 0 0;
  }
  body.dz-app-cart .dz-cart-items-wrapper {
    border-radius: 16px;
    padding: 0.15rem 0.85rem;
    box-shadow: none;
  }
  body.dz-app-cart .dz-cart-row-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.85rem 0;
    align-items: start;
  }
  body.dz-app-cart .dz-cart-item-qty-col {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.15rem;
  }
  body.dz-app-cart .dz-cart-item-name {
    font-size: 0.88rem;
    line-height: 1.45;
  }
  body.dz-app-cart .dz-cart-actions-bar {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 8.5rem;
  }
  body.dz-app-cart .dz-coupon-form {
    min-width: 0;
    width: 100%;
  }

  body.dz-app-cart .dz-cart-mobile-dock {
    display: flex;
    position: fixed;
    right: 10px;
    left: 10px;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    z-index: 10000;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: #0b1d3a;
    color: #fff;
    border-radius: 16px;
    padding: 0.7rem 0.75rem 0.7rem 0.7rem;
    box-shadow: 0 12px 32px rgba(11, 29, 58, 0.35);
  }
  body.dz-app-cart .dz-app-dock-meta span {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 700;
  }
  body.dz-app-cart .dz-app-dock-meta strong,
  body.dz-app-cart .dz-app-dock-meta .woocommerce-Price-amount {
    font-size: 0.95rem;
    color: #7dd3fc;
    font-weight: 900;
  }
  body.dz-app-cart .dz-cart-mobile-dock a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.05rem;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 12px;
    white-space: nowrap;
  }

  body.dz-app-checkout .dz-checkout-page .dz-checkout-card {
    border-radius: 16px;
    padding: 1rem 0.95rem 1.1rem;
    box-shadow: none;
  }
  body.dz-app-checkout .dz-card-header-tag p {
    display: none;
  }
  body.dz-app-checkout .dz-review-thumb {
    width: 44px;
    height: 58px;
  }
  body.dz-app-checkout .dz-review-controls {
    gap: 0.5rem;
  }
  body.dz-app-checkout .dz-review-line-total {
    margin-inline-start: 0;
    width: 100%;
    order: -1;
    font-size: 0.95rem;
  }
  body.dz-app-checkout .dz-checkout-qty-btn {
    width: 38px;
    height: 38px;
  }
  body.dz-app-checkout .dz-checkout-qty-input {
    height: 38px;
    width: 2.6rem;
  }
  body.dz-app-checkout .dz-review-editable .binding-toggle-cart label,
  body.dz-app-checkout .dz-review-editable .cd-toggle-cart label {
    width: 100%;
    padding: 0.55rem 0.7rem;
    font-size: 0.78rem;
    border-radius: 12px;
  }
  body.dz-app-checkout .dz-checkout-layout-grid {
    gap: 0.85rem;
    padding-bottom: 9.5rem;
  }
  body.dz-app-checkout .form-row.place-order {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10002;
    background: #ffffff;
    border-top: 1px solid #e8edf3;
    margin: 0;
    padding: 0.55rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -10px 28px rgba(11, 29, 58, 0.12);
  }
  body.dz-app-checkout .dz-app-pay-dock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }
  body.dz-app-checkout .dz-app-pay-meta {
    display: block;
    min-width: 0;
  }
  body.dz-app-checkout .dz-app-pay-meta span {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 700;
  }
  body.dz-app-checkout .dz-app-pay-meta strong,
  body.dz-app-checkout .dz-app-pay-meta .woocommerce-Price-amount {
    font-size: 0.95rem;
    color: #0b1d3a;
    font-weight: 900;
  }
  body.dz-app-checkout .dz-checkout-page #place_order,
  body.dz-app-checkout .dz-place-order-btn {
    position: static;
    width: auto;
    flex: 1;
    min-height: 50px;
    margin: 0;
    border-radius: 14px;
    white-space: nowrap;
    padding: 0 1rem;
  }
  body.dz-app-checkout .woocommerce-terms-and-conditions-wrapper {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
  }
  body.dz-app-cart .dz-cart-empty-page-wrap,
  body.dz-app-checkout .dz-cart-empty-page-wrap {
    padding: 0.75rem 0 2rem;
    background: transparent;
  }
  body.dz-app-cart .dz-empty-box-inner,
  body.dz-app-checkout .dz-empty-box-inner {
    border-radius: 18px;
    padding: 1.75rem 1.15rem 1.4rem;
    box-shadow: none;
  }
}

@media (max-width: 700px) {
  .dz-cart-row-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .dz-cart-item-qty-col {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-top: 0.15rem;
  }
  .dz-cart-remove-link span {
    display: none;
  }
  .dz-cart-actions-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .dz-coupon-form {
    min-width: 0;
    width: 100%;
  }
  .dz-btn-update-cart {
    width: 100%;
  }
}

/* ==========================================================================
   MOBILE APP KIT — SINGLE PRODUCT (behzadbook-style)
   ========================================================================== */
@media (max-width: 992px) {
  body.dz-app-product .dz-main-header,
  body.single-product .dz-main-header {
    display: none !important;
  }
  body.dz-app-product .dz-product-breadcrumb,
  body.single-product .dz-product-breadcrumb {
    display: none !important;
  }
  body.dz-app-product .dz-pdp-app-head,
  body.single-product .dz-pdp-app-head {
    display: flex;
  }

  body.dz-app-product .dz-single-product-page,
  body.single-product .dz-single-product-page {
    padding: 0.65rem 0 1.25rem;
    background: #f7f0e6;
  }
  body.dz-app-product .dz-pdp-hero,
  body.single-product .dz-pdp-hero {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
    margin-bottom: 0.95rem;
  }
  body.dz-app-product .dz-pdp-stage,
  body.single-product .dz-pdp-stage {
    position: static;
    top: auto;
    border-radius: 20px;
    padding: 1rem 0.9rem 0.95rem;
    box-shadow: 0 10px 28px rgba(11, 29, 58, 0.07);
  }
  body.dz-app-product .dz-pdp-book,
  body.single-product .dz-pdp-book {
    min-height: 0;
    margin-bottom: 0.7rem;
  }
  body.dz-app-product .dz-main-cover-img,
  body.single-product .dz-main-cover-img {
    max-height: 280px;
    max-width: 58%;
    transform: none;
    box-shadow: 0 14px 28px rgba(11, 29, 58, 0.18);
    border-radius: 10px;
  }
  body.dz-app-product .dz-pdp-book:hover .dz-main-cover-img,
  body.single-product .dz-pdp-book:hover .dz-main-cover-img {
    transform: none;
  }
  body.dz-app-product .dz-pdp-buybox,
  body.single-product .dz-pdp-buybox {
    border-radius: 20px;
    padding: 1rem 0.95rem 1.05rem;
    box-shadow: none;
  }
  body.dz-app-product .dz-product-main-title,
  body.single-product .dz-product-main-title {
    font-size: 1.12rem;
    margin-bottom: 0.65rem;
  }
  body.dz-app-product .dz-pdp-specs-pills,
  body.single-product .dz-pdp-specs-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }
  body.dz-app-product .dz-spec-pill,
  body.single-product .dz-spec-pill {
    border-right: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 0.45rem 0.35rem;
  }
  body.dz-app-product .dz-pdp-trust-row,
  body.single-product .dz-pdp-trust-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0.7rem 0.25rem;
  }
  body.dz-app-product .dz-pdp-trust-row span,
  body.single-product .dz-pdp-trust-row span {
    font-size: 0.62rem;
  }

  /* Hide in-page ATC for simple products — dock handles purchase.
     Variable chips + ATC stay visible so the selected format can be added. */
  body.dz-app-product .dz-desktop-cart-wrap,
  body.single-product .dz-desktop-cart-wrap,
  body.dz-app-product .dz-pdp-simple-form,
  body.single-product .dz-pdp-simple-form {
    display: none !important;
  }
  body.dz-app-product .dz-var-panel,
  body.single-product .dz-var-panel {
    display: block;
    margin-bottom: 0.5rem;
  }
  #dz-single-cart-wrap.dz-pulse-target {
    outline: 2px solid #0284c7;
    outline-offset: 4px;
    border-radius: 16px;
  }
  body.dz-app-product .dz-b2b-highlight-card,
  body.single-product .dz-b2b-highlight-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.9rem;
  }
  body.dz-app-product .dz-btn-b2b-link,
  body.single-product .dz-btn-b2b-link {
    width: 100%;
    justify-content: center;
  }

  body.dz-app-product .dz-product-tabs-section,
  body.single-product .dz-product-tabs-section {
    border-radius: 18px;
    box-shadow: none;
  }
  body.dz-app-product .dz-tabs-nav,
  body.single-product .dz-tabs-nav {
    flex-direction: column;
    overflow: visible;
  }
  body.dz-app-product .dz-tab-btn,
  body.single-product .dz-tab-btn {
    width: 100%;
    justify-content: flex-start;
    border-bottom: 1px solid #e8edf3;
    padding: 0.85rem 1rem;
    font-size: 0.86rem;
  }
  body.dz-app-product .dz-tab-btn.active,
  body.single-product .dz-tab-btn.active {
    background: #f0f9ff;
    color: #0284c7;
    border-bottom-color: #bae6fd;
  }
  body.dz-app-product .dz-tabs-content,
  body.single-product .dz-tabs-content {
    padding: 0.95rem;
  }
  body.dz-app-product .dz-related-books-section .dz-books-grid,
  body.single-product .dz-related-books-section .dz-books-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  body.dz-app-cart .dz-cart-mobile-dock {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
