/* ==========================================================================
   dzabanomid Master Theme Styles - Ø§Ù†ØªØ´Ø§Ø±Ø§Øª Ø¯Ù†ÛŒØ§ÛŒ Ø²Ø¨Ø§Ù†
   ========================================================================== */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
  direction: rtl;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--dz-font-main);
  background-color: var(--dz-bg);
  color: var(--dz-text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.dz-container {
  width: 100%;
  max-width: var(--dz-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* --- Top Announcement Bar --- */
.dz-top-announcement {
  background: linear-gradient(90deg, #0284c7 0%, #0369a1 50%, #0b1d3a 100%);
  color: #ffffff;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.dz-top-announcement a {
  color: #fff;
  text-decoration: underline;
  margin-right: 0.5rem;
}

/* --- Top Utility Bar --- */
.dz-topbar {
  background-color: #071326;
  color: #94a3b8;
  font-size: 0.82rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #0f2744;
}
.dz-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dz-topbar-right, .dz-topbar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.dz-topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.dz-topbar-item:hover {
  color: #38bdf8;
}
.dz-topbar-socials {
  display: flex;
  gap: 0.75rem;
}
.dz-topbar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0f2744;
  color: #cbd5e1;
  font-size: 0.75rem;
}
.dz-topbar-socials a:hover {
  background: #0284c7;
  color: #fff;
}

/* --- Main Header --- */
.dz-main-header {
  background-color: #ffffff;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(11, 29, 58, 0.05);
}
.dz-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.dz-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.dz-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.dz-logo img, .dz-main-logo-img {
  height: 46px;
  max-height: 50px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}
.dz-logo:hover img {
  transform: scale(1.02);
}

/* Live Search Box */
.dz-search-box {
  flex: 1;
  max-width: 580px;
  position: relative;
}
.dz-search-form {
  display: flex;
  align-items: center;
  background-color: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: var(--dz-radius-full);
  padding: 0.25rem 0.5rem;
  transition: all 0.25s ease;
}
.dz-search-form:focus-within {
  background-color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.18);
}
.dz-search-cat-select {
  background: transparent;
  padding: 0.5rem 0.75rem;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  border-left: 1px solid #cbd5e1;
  cursor: pointer;
}
.dz-search-input {
  flex: 1;
  background: transparent;
  padding: 0.6rem 1rem;
  color: #0b1d3a;
  font-size: 0.92rem;
  font-weight: 500;
}
.dz-search-btn {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.35);
}
.dz-search-btn:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: scale(1.04);
}

/* Live Autocomplete Dropdown */
.dz-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(11, 29, 58, 0.18);
  border: 1.5px solid #bae6fd;
  max-height: 520px;
  overflow-y: auto;
  z-index: 10050;
  display: none;
  padding: 12px;
}
.dz-search-results.active {
  display: block;
  animation: dzFadeDown 0.2s ease-out;
}
.dz-search-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f0f9ff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 8px;
}
.dz-search-nav-arrow {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #0b1d3a;
  margin-right: 4px;
}
.dz-search-nav-arrow:hover {
  background: #0b1d3a;
  color: #fff;
  border-color: #0b1d3a;
}
.dz-search-section-header {
  font-size: 12px;
  font-weight: 800;
  color: #0b1d3a;
  background: #f7f0e6;
  padding: 6px 12px;
  border-radius: 8px;
  margin: 8px 0;
}
.dz-search-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.dz-search-chip {
  background: #f1f5f9;
  color: #0b1d3a;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #cbd5e1;
}
.dz-search-chip:hover,
.dz-search-chip.is-author:hover {
  background: #0284c7;
  color: #fff;
  border-color: #0284c7;
}
.dz-search-chip.is-author {
  background: #f7f0e6;
  border-color: #e8dcc8;
}
.dz-search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 4px;
}
.dz-search-result-item:hover,
.dz-search-result-item.is-selected {
  background: #f0f9ff;
}
.dz-search-result-item.is-selected {
  border-right: 4px solid #0284c7;
}
.dz-search-result-thumb {
  width: 48px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7f0e6, #efe6d8);
  border: 1px solid #efe4d3;
}
.dz-search-result-info {
  flex: 1;
  min-width: 0;
}
.dz-search-result-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0b1d3a;
  line-height: 1.4;
  margin-bottom: 4px;
}
.dz-search-result-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  color: #64748b;
}
.dz-search-author {
  color: #0284c7;
  font-weight: 700;
}
.dz-search-result-price-box {
  text-align: left;
  flex-shrink: 0;
}
.dz-search-result-price {
  font-size: 13px;
  font-weight: 800;
  color: #0b1d3a;
}
.dz-search-sale-badge {
  background: #dc2626;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 2px;
}
.dz-search-results-footer {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
}
.dz-search-view-all {
  display: block;
  background: #0b1d3a;
  color: #fff !important;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}
.dz-search-view-all:hover {
  background: #0284c7;
}
.dz-search-empty {
  padding: 18px 12px;
  text-align: center;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}
.dz-search-inquiry-btn {
  display: inline-block;
  margin-top: 10px;
  background: #0284c7;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}
.dz-search-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  gap: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
}
.dz-search-item:hover {
  background: #f0f9ff;
}
.dz-search-item img {
  width: 44px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--dz-radius-xs);
  border: 1px solid #e2e8f0;
}
.dz-search-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.dz-search-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0b1d3a;
}
.dz-search-price {
  font-size: 0.82rem;
  color: #0284c7;
  font-weight: 700;
}

/* Header User Actions Redesign */
.dz-header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.dz-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 1rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--dz-radius-full);
  color: #0b1d3a;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
.dz-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 29, 58, 0.1);
  border-color: #0284c7;
  color: #0284c7;
}

/* B2B Partner Header Button */
.dz-partner-header-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  border-color: #059669 !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3) !important;
}
.dz-partner-header-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45) !important;
  color: #ffffff !important;
}

/* Cart Button */
.dz-cart-btn {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  border-color: #0369a1 !important;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35) !important;
}
.dz-cart-btn:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%) !important;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5) !important;
  color: #ffffff !important;
}
.dz-badge-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ffffff;
  color: #0284c7;
  font-size: 0.75rem;
  font-weight: 900;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0284c7;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Mobile Toggle & Partner Button Desktop Reset */
.dz-mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 1.4rem;
  color: #0b1d3a;
  cursor: pointer;
  padding: 0.4rem;
}
.dz-mobile-partner-btn {
  display: none;
}

/* --- Navigation Bar & Mega Menu Redesign (Blue / White / Deep Navy) --- */
.dz-nav-bar {
  background: linear-gradient(135deg, #0b1d3a 0%, #0f2744 100%);
  color: #ffffff;
  border-bottom: 3px solid #0284c7;
  position: relative;
  box-shadow: 0 6px 25px rgba(11, 29, 58, 0.25);
}
.dz-nav-list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  list-style: none;
  gap: 0;
  width: 100%;
  padding: 0;
  margin: 0;
}
.dz-nav-item {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  position: relative;
}
.dz-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.55rem;
  padding: 0.95rem 0.5rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: #e2e8f0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.dz-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: #38bdf8;
  transition: all 0.25s ease;
  margin: 0 auto;
  border-radius: 3px 3px 0 0;
}
.dz-nav-link:hover, .dz-nav-item.active .dz-nav-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.dz-nav-link:hover::after, .dz-nav-item.active .dz-nav-link::after {
  width: 90%;
}
.dz-nav-link .dz-arrow {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
  opacity: 0.8;
  color: #38bdf8;
}
.dz-nav-item:hover .dz-nav-link .dz-arrow {
  transform: rotate(180deg);
  opacity: 1;
  color: #38bdf8;
}

/* Special Highlighted Nav Item (B2B Wholesale) */
.dz-nav-link.dz-nav-highlight {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.35));
  color: #34d399;
  border-radius: var(--dz-radius-sm);
  margin: 0.2rem 0;
  padding: 0.7rem 0.95rem;
}
.dz-nav-link.dz-nav-highlight:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.35), rgba(5, 150, 105, 0.5));
  color: #ffffff;
}

/* Nav Badges */
.dz-nav-badge-sale {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4);
}
.dz-nav-badge-hot {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 12px;
  margin-left: 4px;
}
.dz-badge-hot {
  background: #fee2e2;
  color: #dc2626;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 8px;
  margin-left: 4px;
}

/* --- SVG Icons Base Styling --- */
.dz-svg-icon {
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.18em;
  display: inline-block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.dz-svg-icon-fill {
  fill: currentColor !important;
  stroke: none !important;
}

/* --- High-Contrast Dropdown & Mega Menu (Blue / White / Deep Navy) --- */
.dz-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff !important;
  color: #0b1d3a !important;
  border-radius: var(--dz-radius-md);
  box-shadow: 0 20px 45px -10px rgba(11, 29, 58, 0.22), 0 0 0 1px #cbd5e1 !important;
  min-width: 260px;
  display: none;
  z-index: 500;
  padding: 0.6rem 0;
}
.dz-nav-item:hover > .dz-dropdown-menu {
  display: block;
  animation: dzFadeDown 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.dz-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  color: #1e3a5f !important;
  font-weight: 600;
  transition: all 0.15s ease;
  text-decoration: none;
}
.dz-dropdown-menu a:hover {
  background: #f0f9ff !important;
  color: #0284c7 !important;
  padding-right: 1.5rem;
}
.dz-dropdown-menu a i, .dz-dropdown-menu a .dz-svg-icon {
  width: 18px;
  text-align: center;
  font-size: 0.95rem;
  color: #0284c7;
}

/* --- Multi-Column Mega Menu (Blue / White / Deep Navy) --- */
.dz-has-mega {
  position: static;
}
.dz-mega-menu {
  width: 100%;
  max-width: var(--dz-container);
  right: 50%;
  transform: translateX(50%);
  padding: 1.5rem 1.75rem;
  border-radius: var(--dz-radius-md);
  background: #ffffff !important;
  color: #0b1d3a !important;
  box-shadow: 0 25px 50px -12px rgba(11, 29, 58, 0.28), 0 0 0 1px #cbd5e1 !important;
}
.dz-nav-item.dz-has-mega:hover > .dz-mega-menu {
  display: block;
  animation: dzFadeDown 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.dz-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 260px;
  gap: 1.5rem;
}
.dz-mega-col {
  border-left: 1px solid #e2e8f0;
  padding-left: 1.25rem;
}
.dz-mega-col:last-child {
  border-left: none;
  padding-left: 0;
}
.dz-mega-head {
  font-size: 0.96rem;
  font-weight: 800;
  color: #0b1d3a !important;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #0284c7;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.dz-mega-head .dz-flag {
  font-size: 1.2rem;
}
.dz-mega-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.dz-mega-col li a {
  padding: 0.45rem 0.65rem;
  font-size: 0.88rem;
  color: #1e3a5f !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--dz-radius-xs);
  transition: all 0.15s ease;
  text-decoration: none;
}
.dz-mega-col li a:hover {
  background: #f0f9ff !important;
  color: #0284c7 !important;
  padding-right: 0.85rem;
}
.dz-mega-col li a i, .dz-mega-col li a .dz-svg-icon {
  color: #0284c7;
  font-size: 0.88rem;
  width: 16px;
}

/* Mega Promo Highlight Box (Ice Blue & Deep Navy Accent) */
.dz-mega-promo-col {
  border-left: none;
}
.dz-mega-promo-box {
  background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: var(--dz-radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.08);
}
.dz-promo-tag {
  background: #0284c7;
  color: #ffffff !important;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  align-self: flex-start;
  margin-bottom: 0.6rem;
}
.dz-mega-promo-box h5 {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0b1d3a !important;
  margin-bottom: 0.4rem;
}
.dz-mega-promo-box p {
  font-size: 0.82rem;
  color: #1e3a5f !important;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: 500;
}
.dz-btn-mega-action {
  background: #0b1d3a;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: var(--dz-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
}
.dz-btn-mega-action:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

/* Flag Emojis */
.dz-flag {
  font-size: 1.15rem;
  line-height: 1;
}

/* --- Hero Section & Banner Slider (Perfect Equal Height Alignment) --- */
.dz-hero-section {
  padding: 1.25rem 0 1.5rem;
  position: relative;
  z-index: 1;
}
.dz-hero-grid {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 1.15rem;
  align-items: stretch;
}
.dz-hero-slider-wrap {
  background: #ffffff;
  border-radius: var(--dz-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11, 29, 58, 0.08);
  position: relative;
  border: 1px solid var(--dz-border);
  height: 100%;
}
.dz-hero-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.dz-hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  height: 100%;
}
.dz-hero-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.dz-hero-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1856 / 576;
  object-fit: cover;
  display: block;
  border-radius: var(--dz-radius-md);
}

/* 2 Stacked Side Banners (Neatly aligned with Slider) */
.dz-hero-side-banners {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  height: 100%;
  justify-content: space-between;
}
.dz-side-banner,
.dz-side-banner-card {
  flex: 1;
  position: relative;
  border-radius: var(--dz-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(11, 29, 58, 0.06);
  border: 1px solid var(--dz-border);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  background: #f8fafc;
  display: flex;
}
.dz-side-banner a,
.dz-side-banner-card a {
  display: block;
  width: 100%;
  height: 100%;
}
.dz-side-banner img,
.dz-side-banner-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1888 / 560;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.dz-side-banner:hover,
.dz-side-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 29, 58, 0.14);
}
.dz-side-banner:hover img,
.dz-side-banner-card:hover img {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .dz-hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .dz-hero-side-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    height: auto;
  }
}
@media (max-width: 580px) {
  .dz-hero-side-banners {
    gap: 0.5rem;
  }
}

/* --- Features / Trust Bar --- */
.dz-trust-bar {
  background: #ffffff;
  border-radius: var(--dz-radius-lg);
  padding: 1.25rem 2rem;
  margin: 1.5rem 0;
  box-shadow: var(--dz-shadow-sm);
  border: 1px solid var(--dz-border);
}
.dz-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.dz-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dz-trust-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--dz-radius-md);
  background: var(--dz-primary-light);
  color: var(--dz-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.dz-trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dz-secondary);
}
.dz-trust-text p {
  font-size: 0.8rem;
  color: var(--dz-text-muted);
}

/* --- Language Categories Grid --- */
.dz-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.dz-section-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dz-section-title-wrap .dz-title-bar {
  width: 5px;
  height: 24px;
  background: var(--dz-primary);
  border-radius: 4px;
}
.dz-section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dz-secondary);
}
.dz-view-all {
  color: var(--dz-primary);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.dz-view-all:hover {
  color: var(--dz-primary-hover);
  padding-left: 0.3rem;
}

.dz-lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.dz-lang-card {
  background: #ffffff;
  border-radius: var(--dz-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--dz-border);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.dz-lang-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  border-color: var(--dz-primary);
}
.dz-lang-thumb {
  width: 100%;
  aspect-ratio: 1264 / 848;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}
.dz-lang-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.dz-lang-card:hover .dz-lang-thumb img {
  transform: scale(1.06);
}
.dz-lang-body {
  padding: 0.9rem 0.75rem;
  text-align: center;
}
.dz-lang-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dz-secondary);
  margin-bottom: 0.2rem;
}
.dz-lang-sub {
  font-size: 0.78rem;
  color: var(--dz-text-muted);
}

/* --- Mid-Page Promo Banners (Real Widescreen Aspect Ratio) --- */
.dz-promo-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.dz-promo-card {
  position: relative;
  border-radius: var(--dz-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--dz-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #f8fafc;
}
.dz-promo-card a {
  display: block;
  width: 100%;
}
.dz-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.dz-promo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1856 / 576;
  object-fit: cover;
  display: block;
}

/* --- 6 Skills Interactive Pocket Cards (Attached Branded Showcase Box) --- */
.dz-skills-showcase-box {
  background: #ffffff;
  border-radius: var(--dz-radius-lg);
  padding: 1.75rem 1.5rem 1.6rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(11, 29, 58, 0.05);
  border: 1.5px solid #e2e8f0;
  position: relative;
  overflow: visible;
  z-index: 5;
  isolation: isolate;
}

/* Common Attached Box Header */
.dz-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  gap: 1rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 1.15rem;
}
.dz-box-title-area {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.dz-box-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}
.dz-box-icon .dz-svg-icon {
  width: 26px;
  height: 26px;
}
.dz-skills-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
}
.dz-languages-icon {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

.dz-box-text-wrap {
  display: flex;
  flex-direction: column;
}
.dz-box-tag-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}
.dz-skills-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: #047857;
  background: #dcfce7;
  border: 1px solid #86efac;
  padding: 2px 9px;
  border-radius: 20px;
}
.dz-skills-subtag {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 9px;
  border-radius: 20px;
}
.dz-lang-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: #0284c7;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  padding: 2px 9px;
  border-radius: 20px;
}
.dz-lang-subtag {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 9px;
  border-radius: 20px;
}

.dz-box-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #0b1d3a;
  margin: 0 0 0.2rem 0;
  line-height: 1.3;
}
.dz-box-subtitle {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}
.dz-box-action-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.dz-box-viewall-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.05rem;
  border-radius: 20px;
  background: #f0f9ff;
  color: #0284c7 !important;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid #bae6fd;
  transition: all 0.25s ease;
}
.dz-box-viewall-btn:hover {
  background: #0284c7;
  color: #ffffff !important;
  border-color: #0284c7;
  transform: translateY(-2px);
}
.dz-skills-badge-pill {
  font-size: 0.75rem;
  font-weight: 800;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}

/* 6 Skills Grid */
.dz-skills-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.15rem;
  overflow: visible;
  padding-top: 1rem;
}
.dz-skill-card-pocket {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: visible;
  padding-top: 38px;
  cursor: pointer;
}

/* Letter/Book Card hidden inside pocket sleeve */
.dz-skill-letter-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(32px) scale(0.88);
  width: 105px;
  height: 105px;
  z-index: 1;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  pointer-events: none;
}
.dz-skill-letter-card {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(11, 29, 58, 0.18);
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.dz-skill-letter-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  filter: contrast(1.05);
}

/* Pocket Front Sleeve (Navy & Blue Logo Harmony) */
.dz-skill-pocket-front {
  position: relative;
  z-index: 2;
  background: linear-gradient(165deg, #0b1d3a 0%, #152e52 50%, #0f2744 100%);
  border-radius: 16px;
  border: 1px solid #1e3a5f;
  box-shadow: 0 8px 24px -4px rgba(11, 29, 58, 0.25);
  padding: 1.25rem 0.65rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 140px;
}

/* Icon Badge */
.dz-skill-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.dz-skill-icon-badge .dz-svg-icon {
  width: 22px;
  height: 22px;
}

/* Title & Subtitle */
.dz-skill-title {
  font-weight: 800;
  font-size: 0.92rem;
  color: #ffffff;
  margin-bottom: 0.15rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
.dz-skill-subtitle {
  font-size: 0.72rem;
  color: #38bdf8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

/* Slide-up Action Button on Mouse Hover */
.dz-skill-btn {
  opacity: 0;
  transform: translateY(10px);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* --- MOUSE HOVER ANIMATION: LETTER POPS OUT OF ENVELOPE --- */
.dz-skill-card-pocket:hover .dz-skill-letter-wrap,
.dz-skill-card-pocket:focus-within .dz-skill-letter-wrap {
  transform: translateX(-50%) translateY(-44px) scale(1.18) rotate(-3deg);
  z-index: 30;
  filter: drop-shadow(0 20px 25px rgba(11, 29, 58, 0.45));
}
.dz-skill-card-pocket:hover .dz-skill-pocket-front,
.dz-skill-card-pocket:focus-within .dz-skill-pocket-front {
  border-color: #0284c7;
  box-shadow: 0 16px 36px -6px rgba(2, 132, 199, 0.35), 0 0 0 2px #0284c7;
  transform: translateY(4px);
}
.dz-skill-card-pocket:hover .dz-skill-icon-badge,
.dz-skill-card-pocket:focus-within .dz-skill-icon-badge {
  transform: scale(1.1) translateY(-2px);
}
.dz-skill-card-pocket:hover .dz-skill-btn,
.dz-skill-card-pocket:focus-within .dz-skill-btn {
  opacity: 1;
  transform: translateY(0);
  max-height: 35px;
  margin-top: 6px;
}

/* Mobile App: keep pop inside section so covers stay above trust strip */
@media (max-width: 992px) {
  .dz-skills-showcase-box {
    z-index: 6;
    margin-top: 0.35rem;
    padding-top: 1.35rem;
  }
  .dz-skills-grid {
    padding-top: 1.35rem;
    overflow: visible;
  }
  .dz-skill-card-pocket {
    z-index: 1;
  }
  .dz-skill-card-pocket:hover,
  .dz-skill-card-pocket:focus-within {
    z-index: 40;
  }
  .dz-skill-card-pocket:hover .dz-skill-letter-wrap,
  .dz-skill-card-pocket:focus-within .dz-skill-letter-wrap {
    transform: translateX(-50%) translateY(-28px) scale(1.12) rotate(-2deg);
    z-index: 50;
  }
  .dz-trust-showcase {
    z-index: 1;
  }
  .dz-hero-section {
    z-index: 1;
  }
}

/* --- Book Product Cards Grid --- */
.dz-books-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.dz-book-card {
  background: #ffffff;
  border-radius: var(--dz-radius-md);
  border: 1px solid var(--dz-border);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
}
.dz-book-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dz-shadow-lg);
  border-color: var(--dz-primary);
}
.dz-book-badge-sale {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #dc2626;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--dz-radius-full);
  z-index: 2;
}
.dz-book-thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  border-radius: var(--dz-radius-sm);
}
.dz-book-thumb img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.dz-book-card:hover .dz-book-thumb img {
  transform: scale(1.05);
}
.dz-book-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dz-secondary);
  line-height: 1.4;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}
.dz-book-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}
.dz-spec-pill {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}
.dz-book-price-row {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--dz-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dz-price-old {
  font-size: 0.78rem;
  color: #94a3b8;
  text-decoration: line-through;
}
.dz-price-current {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dz-primary);
}
.dz-book-add-btn {
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.45rem;
  background: #f8fafc;
  border: 1px solid var(--dz-border);
  border-radius: var(--dz-radius-sm);
  color: var(--dz-secondary);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.2s;
}
.dz-book-card:hover .dz-book-add-btn {
  background: var(--dz-primary);
  border-color: var(--dz-primary);
  color: #fff;
}

/* --- Promotional 2-Banner Section --- */
.dz-promo-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.dz-promo-card {
  border-radius: var(--dz-radius-lg);
  overflow: hidden;
  box-shadow: var(--dz-shadow-md);
  position: relative;
  transition: transform 0.25s ease;
}
.dz-promo-card:hover {
  transform: translateY(-4px);
}
.dz-promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* --- Social Join Banner --- */
.dz-social-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--dz-radius-lg);
  padding: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  box-shadow: var(--dz-shadow-md);
}
.dz-social-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: #fff;
}
.dz-social-info p {
  color: #94a3b8;
  font-size: 0.92rem;
}
.dz-social-buttons {
  display: flex;
  gap: 0.85rem;
}
.dz-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--dz-radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dz-btn-bale {
  background: #0284c7;
  color: #fff;
}
.dz-btn-bale:hover {
  background: #0369a1;
}
.dz-btn-insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.dz-btn-insta:hover {
  opacity: 0.92;
}

/* --- Blog / Encyclopedia Section --- */
.dz-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.dz-blog-card {
  background: #ffffff;
  border-radius: var(--dz-radius-md);
  overflow: hidden;
  border: 1px solid var(--dz-border);
  box-shadow: var(--dz-shadow-sm);
  transition: all 0.25s ease;
}
.dz-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--dz-shadow-lg);
}
.dz-blog-thumb {
  height: 150px;
  overflow: hidden;
}
.dz-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.dz-blog-card:hover .dz-blog-thumb img {
  transform: scale(1.06);
}
.dz-blog-body {
  padding: 1rem;
}
.dz-blog-date {
  font-size: 0.75rem;
  color: var(--dz-text-muted);
  margin-bottom: 0.35rem;
  display: block;
}
.dz-blog-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dz-secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Footer --- */
.dz-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding-top: 3.5rem;
  border-top: 4px solid var(--dz-primary);
}
.dz-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.dz-footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.dz-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: #0284c7;
}
.dz-footer {
  background: #0b1d3a;
  color: #ffffff;
  padding: 3rem 0 2rem;
  position: relative;
}
.dz-footer-app-actions {
  display: none;
}
.dz-footer-logo-wrap {
  margin-bottom: 1.15rem;
  background: #ffffff;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.dz-footer-about p {
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.dz-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dz-footer-links li {
  margin-bottom: 0.55rem;
}
.dz-footer-links a {
  font-size: 0.86rem;
  color: #94a3b8;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}
.dz-footer-links a:hover {
  color: #38bdf8;
  padding-right: 0.35rem;
}
.dz-accordion-title .dz-svg-icon {
  display: none;
}

.dz-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.86rem;
  color: #cbd5e1;
}
.dz-footer-contact-item .dz-svg-icon,
.dz-footer-contact-item i {
  color: #0284c7;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.dz-footer-contact-item a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 700;
}

.dz-trust-seals {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.dz-seal-badge {
  background: #ffffff;
  padding: 0.45rem 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
}
.dz-seal-badge:hover {
  transform: translateY(-2px);
}
.dz-seal-badge a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.dz-seal-badge img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.dz-seal-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0b1d3a;
}

.dz-footer-bottom {
  background: #081427;
  padding: 1.15rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  border-top: 1px solid #152e52;
}

/* ==================== FOOTER MOBILE APP KIT STYLES ==================== */
@media (max-width: 768px) {
  .dz-footer {
    padding: 1.5rem 0 95px !important; /* Buffer for bottom 5-tab bar */
  }
  .dz-footer-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .dz-footer-app-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }
  .dz-app-action-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.65rem 0.35rem 0.55rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
  }
  .dz-app-action-card:active {
    transform: scale(0.96);
    background: rgba(2, 132, 199, 0.2);
  }
  .dz-app-action-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  .dz-app-action-icon .dz-svg-icon {
    width: 18px;
    height: 18px;
  }
  .dz-app-action-text strong {
    font-size: 0.68rem;
    color: #ffffff;
    display: block;
    margin-bottom: 1px;
    white-space: nowrap;
  }
  .dz-app-action-text span {
    font-size: 0.58rem;
    color: #94a3b8;
    display: block;
    white-space: nowrap;
  }

  /* Accordions in Mobile */
  .dz-footer-accordion {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }
  .dz-accordion-title {
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.85rem !important;
    margin: 0 !important;
    font-size: 0.88rem !important;
    color: #ffffff !important;
    user-select: none;
  }
  .dz-accordion-title .dz-svg-icon {
    display: block !important;
    width: 14px;
    height: 14px;
    color: #94a3b8;
    transition: transform 0.3s ease;
  }
  .dz-accordion-title.dz-active .dz-svg-icon {
    transform: rotate(180deg);
    color: #38bdf8;
  }
  .dz-accordion-content {
    display: none;
    padding: 0.4rem 0.85rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .dz-accordion-content.dz-open {
    display: block !important;
    animation: dzFadeDown 0.22s ease;
  }
  .dz-footer-about {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dz-footer-about p {
    font-size: 0.78rem;
    line-height: 1.6;
  }
  .dz-trust-seals {
    justify-content: center;
  }
}

/* --- Floating Action Dock (Elevated above Mobile Navigation Bar) --- */
.dz-floating-dock {
  position: fixed;
  bottom: 28px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9990;
  transition: bottom 0.3s ease, transform 0.3s ease;
}
.dz-float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  border: none;
}
.dz-float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.dz-float-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}
.dz-float-call {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}
.dz-float-top {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  cursor: pointer;
}
.dz-float-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  background: #0f172a;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.dz-float-btn:hover .dz-float-tooltip {
  opacity: 1;
}

/* Elevate Floating Dock safely above Mobile App Navigation Bar */
@media (max-width: 992px) {
  .dz-floating-dock {
    bottom: 84px; /* Safely clears the 65px-70px bottom app navigation bar */
    left: 14px;
    gap: 8px;
  }
  .dz-float-btn {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }
  .dz-float-tooltip {
    display: none; /* Hide hover tooltips on touch devices */
  }
}

@media (max-width: 580px) {
  .dz-floating-dock {
    bottom: 82px;
    left: 12px;
    gap: 7px;
  }
  .dz-float-btn {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }
}

/* --- Modal Dialog --- */
.dz-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.dz-modal.active {
  opacity: 1;
  visibility: visible;
}
.dz-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
}
.dz-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: var(--dz-radius-lg);
  max-width: 520px;
  width: 90%;
  padding: 2rem;
  box-shadow: var(--dz-shadow-lg);
  z-index: 10;
  animation: dzScaleUp 0.25s ease-out;
}
.dz-modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #f1f5f9;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dz-text-muted);
  cursor: pointer;
}
.dz-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.dz-modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dz-primary-light);
  color: var(--dz-primary);
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.dz-modal-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dz-secondary);
  margin-bottom: 0.35rem;
}
.dz-modal-header p {
  font-size: 0.85rem;
  color: var(--dz-text-muted);
}
.dz-form-group {
  margin-bottom: 1rem;
}
.dz-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dz-secondary);
  margin-bottom: 0.35rem;
}
.dz-form-group input, .dz-form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--dz-border);
  border-radius: var(--dz-radius-md);
  font-size: 0.9rem;
  background: #f8fafc;
}
.dz-form-group input:focus, .dz-form-group textarea:focus {
  background: #fff;
  border-color: var(--dz-primary);
}
.dz-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.dz-btn-whatsapp {
  background: #25d366;
  color: #fff;
  justify-content: center;
}
.dz-btn-outline {
  background: #ffffff;
  border: 1px solid var(--dz-border);
  color: var(--dz-secondary);
  justify-content: center;
}

/* --- UI/UX Pro Max Micro-Animations & Effects --- */
@keyframes dzFadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes dzScaleUp {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes dzPulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(234, 88, 12, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}
@keyframes dzFloatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Card Hover Elevation & Tilt */
.dz-book-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.dz-book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(234, 88, 12, 0.25);
  border-color: var(--dz-primary);
}
.dz-book-card .dz-book-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(239, 68, 68, 0.35);
  z-index: 5;
}
.dz-book-card .dz-book-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--dz-radius-sm);
  background: #f8fafc;
}
.dz-book-card .dz-book-thumb img {
  transition: transform 0.4s ease;
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.dz-book-card:hover .dz-book-thumb img {
  transform: scale(1.06);
}

/* Glassmorphism Header */
.dz-main-header {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background-color: var(--dz-surface-glass);
}

/* WhatsApp Pulse in Floating Dock */
.dz-floating-dock .dz-dock-btn.whatsapp {
  animation: dzPulseGlow 2.5s infinite;
}

/* Language Category Cards */
.dz-lang-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.dz-lang-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .dz-hero-grid {
    grid-template-columns: 1fr;
  }
  .dz-hero-side-banners {
    flex-direction: row;
  }
  .dz-side-banner-card {
    flex: 1;
  }
  .dz-lang-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dz-books-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dz-skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dz-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Quick WA button */
.dz-mobile-quick-btn {
  display: none;
}

@media (max-width: 992px) {
  .dz-top-announcement,
  .dz-topbar,
  .dz-nav-bar,
  .dz-partner-header-btn,
  .dz-header-inquiry-btn,
  .dz-header-account-btn {
    display: none !important;
  }
  .dz-header-otp-btn {
    display: flex !important;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
  }
  .dz-header-otp-btn span {
    display: none !important;
  }

  /* Sticky App-Style Main Header */
  .dz-main-header {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1.5px solid rgba(2, 132, 199, 0.2);
    box-shadow: 0 4px 20px rgba(11, 29, 58, 0.07);
    padding: 0.5rem 0 0.65rem;
  }

  .dz-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  /* 1. Mobile Menu / Drawer Toggle */
  .dz-mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    color: #0b1d3a;
    font-size: 1.15rem;
    cursor: pointer;
    order: 1;
    transition: all 0.2s ease;
  }
  .dz-mobile-menu-toggle:active {
    background: #e0f2fe;
    color: #0284c7;
  }

  /* 2. Centered Logo */
  .dz-logo {
    order: 2;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dz-logo img, .dz-main-logo-img {
    height: 38px;
    max-height: 38px;
    max-width: 180px;
  }

  /* 3. Header Action Icons (Animated Partner Btn + WhatsApp + Cart) */
  .dz-header-actions {
    order: 3;
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }
  .dz-mobile-partner-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.38rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    line-height: 1;
    white-space: nowrap;
  }
  .dz-mobile-partner-btn:active {
    transform: scale(0.95);
  }
  .dz-mobile-partner-btn .dz-svg-icon {
    width: 14px;
    height: 14px;
  }
  .dz-mobile-partner-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: rotate(25deg);
    animation: dzPartnerShimmer 3.2s infinite;
  }
  .dz-partner-radar-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: dzPartnerRadar 1.8s infinite;
  }

  @keyframes dzPartnerShimmer {
    0% { left: -60%; }
    35% { left: 140%; }
    100% { left: 140%; }
  }
  @keyframes dzPartnerRadar {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
  }

  .dz-mobile-quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #16a34a;
    border-radius: 12px;
    font-size: 1.15rem;
    padding: 0;
    text-decoration: none;
  }
  .dz-header-actions .dz-cart-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    color: #0284c7;
    position: relative;
  }
  .dz-cart-btn-label {
    display: none !important;
  }
  .dz-header-actions .dz-cart-btn .dz-badge-count {
    position: absolute;
    top: -4px;
    left: -4px;
    font-size: 0.65rem;
    min-width: 17px;
    height: 17px;
    border: 2px solid #ffffff;
    background: #ef4444;
    color: #ffffff;
  }

  /* 4. Full-width App Search Bar (Row 2) */
  .dz-search-box {
    order: 4;
    width: 100%;
    max-width: 100%;
    margin-top: 0.25rem;
  }
  .dz-search-form {
    border-radius: 25px;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
  }
  .dz-search-cat-select {
    display: none;
  }
  .dz-search-input {
    padding: 0.65rem 1rem 0.65rem 0.5rem;
    font-size: 0.86rem;
    background: transparent;
  }
  .dz-search-btn {
    border-radius: 50%;
    width: 34px;
    height: 34px;
    margin-left: 4px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dz-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dz-lang-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dz-books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dz-skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .dz-skill-letter-wrap {
    width: 70px;
    height: 70px;
  }
  .dz-promo-banner-grid {
    grid-template-columns: 1fr;
  }
  .dz-social-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  .dz-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dz-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  html {
    font-size: 14px;
  }
  .dz-skills-section {
    padding: 1.25rem 0.75rem 1rem;
    border-radius: 14px;
  }
  .dz-skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    padding-top: 0.5rem;
  }
  .dz-skill-card-pocket {
    padding-top: 22px;
  }
  .dz-skill-letter-wrap {
    width: 56px;
    height: 56px;
  }
  .dz-skill-pocket-front {
    min-height: 96px;
    padding: 0.65rem 0.25rem 0.5rem;
    border-radius: 11px;
  }
  .dz-skill-icon-badge {
    width: 30px;
    height: 30px;
    margin-bottom: 0.25rem;
  }
  .dz-skill-icon-badge .dz-svg-icon {
    width: 15px;
    height: 15px;
  }
  .dz-skill-title {
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.1rem;
  }
  .dz-skill-subtitle {
    font-size: 0.58rem;
    line-height: 1.1;
    margin-bottom: 0.2rem;
  }
  .dz-skill-btn {
    display: none !important;
  }
  .dz-books-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .dz-lang-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .dz-trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .dz-blog-grid {
    grid-template-columns: 1fr;
  }
  .dz-header-actions .dz-partner-header-btn span {
    display: none;
  }
  .dz-header-actions .dz-action-btn span {
    display: none;
  }
  .dz-header-actions .dz-action-btn {
    padding: 8px 10px;
  }
}

/* ==========================================================================
   4-COLUMN 3D SEAMLESS BORDERLESS FOREIGN LANGUAGES SHOWCASE (ATTACHED BOX)
   ========================================================================== */
.dz-languages-showcase-box {
  background: #ffffff;
  border-radius: var(--dz-radius-lg);
  padding: 1.75rem 1.5rem 1.6rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 10px 30px rgba(11, 29, 58, 0.05);
  border: 1.5px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.dz-languages-glow-bg,
.dz-skills-glow-bg {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, rgba(2, 132, 199, 0) 70%);
  pointer-events: none;
}
.dz-skills-glow-bg {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0) 70%);
}

.dz-lang-3d-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 0.5rem;
  perspective: 1200px;
  position: relative;
  z-index: 2;
}

/* 3D Borderless Card */
.dz-lang-3d-card {
  display: block;
  text-decoration: none;
  border: none !important;
  outline: none;
  background: transparent;
  perspective: 1200px;
  cursor: pointer;
}

.dz-lang-card-inner {
  position: relative;
  border-radius: var(--dz-radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  height: auto;
  min-height: 180px;
  background: #0b1d3a;
  border: 1px solid rgba(2, 132, 199, 0.15);
  box-shadow: 0 8px 24px -4px rgba(11, 29, 58, 0.14);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

/* Media Fit Container */
.dz-lang-media-fit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dz-lang-fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center;
  display: block;
  padding: 0 !important;
  border-radius: inherit;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

/* Overlay: Hidden in Normal State */
.dz-lang-3d-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 58, 0.05) 0%, rgba(11, 29, 58, 0.7) 45%, rgba(11, 29, 58, 0.97) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.15rem;
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(2px);
}

.dz-lang-info-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}
.dz-lang-flag {
  font-size: 1.35rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.dz-lang-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.dz-lang-detail {
  font-size: 0.76rem;
  color: #cbd5e1;
  line-height: 1.4;
  margin: 0 0 0.45rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dz-lang-cta {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.45);
  transform: translateY(6px);
  transition: transform 0.25s ease;
}

/* ==================== 3D HOVER INTERACTION ==================== */
.dz-lang-3d-card:hover .dz-lang-card-inner {
  transform: translateY(-10px) rotateX(4deg) scale(1.02);
  box-shadow: 0 25px 45px -10px rgba(2, 132, 199, 0.35), 0 12px 25px -8px rgba(11, 29, 58, 0.4);
}
.dz-lang-3d-card:hover .dz-lang-fit-img {
  transform: scale(1.08);
  filter: brightness(0.92);
}
.dz-lang-3d-card:hover .dz-lang-3d-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dz-lang-3d-card:hover .dz-lang-cta {
  transform: translateY(0);
}

/* Responsive 4-column Grid in 2 Rows for Mobile */
@media (max-width: 992px) {
  .dz-skills-showcase-box,
  .dz-languages-showcase-box {
    padding: 1.25rem 1rem 1.15rem;
    margin-bottom: 2rem;
  }
  .dz-box-header {
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .dz-box-title {
    font-size: 1.1rem;
  }
  .dz-box-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.2rem;
  }
  .dz-box-icon .dz-svg-icon {
    width: 22px;
    height: 22px;
  }
  .dz-lang-3d-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 0.5rem;
  }
  .dz-lang-card-inner {
    height: 130px;
    border-radius: 12px;
  }
  .dz-lang-3d-overlay {
    padding: 0.75rem 0.5rem;
  }
  .dz-lang-flag {
    font-size: 1.1rem;
  }
  .dz-lang-name {
    font-size: 0.82rem;
  }
  .dz-lang-detail {
    font-size: 0.65rem;
    -webkit-line-clamp: 1;
    margin-bottom: 0.25rem;
  }
  .dz-lang-cta {
    font-size: 0.65rem;
    padding: 2px 7px;
  }
}

@media (max-width: 580px) {
  .dz-skills-showcase-box,
  .dz-languages-showcase-box {
    padding: 0.95rem 0.65rem 0.85rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
  }
  .dz-box-header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.65rem;
  }
  .dz-box-title {
    font-size: 0.92rem;
  }
  .dz-box-subtitle {
    display: none;
  }
  .dz-box-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .dz-box-icon .dz-svg-icon {
    width: 18px;
    height: 18px;
  }
  .dz-box-viewall-btn span {
    display: none;
  }
  .dz-box-viewall-btn {
    padding: 0.4rem 0.6rem;
    border-radius: 50%;
  }
  .dz-skills-badge-pill {
    font-size: 0.62rem;
    padding: 2px 7px;
  }
  .dz-lang-3d-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 0.25rem;
  }
  .dz-lang-card-inner {
    aspect-ratio: 16 / 12;
    min-height: 80px;
    height: auto;
    border-radius: 9px;
    background: #0b1d3a;
  }
  .dz-lang-fit-img {
    object-fit: cover !important;
    padding: 0 !important;
  }
  .dz-lang-3d-overlay {
    padding: 0.45rem 0.35rem;
  }
  .dz-lang-flag {
    font-size: 0.95rem;
  }
  .dz-lang-name {
    font-size: 0.68rem;
    line-height: 1.15;
  }
  .dz-lang-detail {
    display: none;
  }
  .dz-lang-cta {
    display: none;
  }
}

/* ==========================================================================
   3D ANIMATED TRUST & FEATURES CARDS SHOWCASE (SLIMMER & COMPACT)
   ========================================================================== */
.dz-trust-showcase {
  margin: 1rem 0 1.85rem;
  position: relative;
  z-index: 2;
}
.dz-trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Base Card Style - Slimmed vertically */
.dz-trust-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1.5px solid #e2e8f0;
  border-radius: var(--dz-radius-md);
  padding: 0.95rem 0.85rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(11, 29, 58, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Top Indicator Line */
.dz-trust-top-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Icon Box */
.dz-trust-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.06);
}
.dz-trust-icon-box .dz-svg-icon {
  width: 23px;
  height: 23px;
}

/* Badge Pill */
.dz-trust-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 20px;
  margin-bottom: 0.25rem;
}

/* Titles & Description */
.dz-trust-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0b1d3a;
  margin: 0 0 0.2rem 0;
  line-height: 1.3;
  transition: color 0.25s ease;
}
.dz-trust-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

/* --- Card Themes & Accents --- */
/* 1. Fast Shipping (Royal Blue) */
.dz-card-shipping .dz-trust-top-line {
  background: linear-gradient(90deg, #0284c7, #38bdf8);
}
.dz-card-shipping .dz-trust-icon-box {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
}
.dz-card-shipping .dz-trust-badge {
  background: #e0f2fe;
  color: #0284c7;
}
.dz-card-shipping:hover {
  border-color: #0284c7;
  box-shadow: 0 16px 35px -8px rgba(2, 132, 199, 0.25);
}

/* 2. Discounts (Amber / Orange Flame) */
.dz-card-discount .dz-trust-top-line {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}
.dz-card-discount .dz-trust-icon-box {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
}
.dz-card-discount .dz-trust-badge {
  background: #fef3c7;
  color: #b45309;
}
.dz-card-discount:hover {
  border-color: #f59e0b;
  box-shadow: 0 16px 35px -8px rgba(245, 158, 11, 0.25);
}

/* 3. Authenticity Guarantee (Emerald) */
.dz-card-quality .dz-trust-top-line {
  background: linear-gradient(90deg, #10b981, #059669);
}
.dz-card-quality .dz-trust-icon-box {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
}
.dz-card-quality .dz-trust-badge {
  background: #dcfce7;
  color: #047857;
}
.dz-card-quality:hover {
  border-color: #10b981;
  box-shadow: 0 16px 35px -8px rgba(16, 185, 129, 0.25);
}

/* 4. WhatsApp Support (Indigo / Purple) */
.dz-card-support .dz-trust-top-line {
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}
.dz-card-support .dz-trust-icon-box {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #ffffff;
}
.dz-card-support .dz-trust-badge {
  background: #ede9fe;
  color: #6d28d9;
}
.dz-card-support:hover {
  border-color: #6366f1;
  box-shadow: 0 16px 35px -8px rgba(99, 102, 241, 0.25);
}

/* --- Global Hover Interactions --- */
.dz-trust-card:hover {
  transform: translateY(-6px);
}
.dz-trust-card:hover .dz-trust-top-line {
  width: 100%;
}
.dz-trust-card:hover .dz-trust-icon-box {
  transform: scale(1.12) rotate(4deg);
}
.dz-trust-card:hover .dz-trust-title {
  color: #0284c7;
}

/* Mobile & Tablet Responsiveness - Slimmer Layout */
@media (max-width: 992px) {
  .dz-trust-showcase {
    margin: 0.75rem 0 1.35rem;
  }
  .dz-trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
  }
  .dz-trust-card {
    padding: 0.65rem 0.35rem 0.55rem;
    border-radius: 11px;
  }
  .dz-trust-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 0.3rem;
  }
  .dz-trust-icon-box .dz-svg-icon {
    width: 18px;
    height: 18px;
  }
  .dz-trust-badge {
    font-size: 0.58rem;
    padding: 1px 4px;
    margin-bottom: 0.15rem;
  }
  .dz-trust-title {
    font-size: 0.74rem;
    margin-bottom: 0.15rem;
    line-height: 1.2;
  }
  .dz-trust-desc {
    font-size: 0.62rem;
    line-height: 1.2;
  }
}

@media (max-width: 580px) {
  .dz-trust-showcase {
    margin: 0.5rem 0 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dz-trust-showcase::-webkit-scrollbar {
    display: none;
  }
  .dz-trust-cards-grid {
    grid-template-columns: repeat(4, minmax(76px, 1fr));
    gap: 0.3rem;
    min-width: 100%;
  }
  .dz-trust-card {
    padding: 0.45rem 0.2rem 0.4rem;
    border-radius: 9px;
  }
  .dz-trust-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    margin-bottom: 0.2rem;
  }
  .dz-trust-icon-box .dz-svg-icon {
    width: 14px;
    height: 14px;
  }
  .dz-trust-badge {
    font-size: 0.52rem;
    padding: 1px 3px;
    margin-bottom: 0.1rem;
    white-space: nowrap;
  }
  .dz-trust-title {
    font-size: 0.64rem;
    font-weight: 800;
    margin-bottom: 0.1rem;
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .dz-trust-desc {
    font-size: 0.54rem;
    line-height: 1.1;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ==========================================================================
   BEST SELLERS SINGLE-ROW SWIPER & REDESIGNED 3D BOOK PRODUCT CARDS
   ========================================================================== */
/* ==========================================================================
   BEST SELLERS DEALS SHOWCASE BOX (BRANDED NAVY & ROYAL BLUE UI)
   ========================================================================== */
.dz-deals-showcase-box {
  background: linear-gradient(145deg, #0b1d3a 0%, #0f2744 45%, #152e52 100%);
  border: 1.5px solid #1e3a5f;
  border-radius: var(--dz-radius-lg);
  padding: 2rem 1.75rem 1.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 45px -8px rgba(11, 29, 58, 0.35);
}

.dz-showcase-glow-bg {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.28) 0%, rgba(2, 132, 199, 0) 70%);
  pointer-events: none;
}

/* Showcase Header */
.dz-showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  gap: 1rem;
}

.dz-showcase-title-area {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.dz-showcase-fire-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 22px rgba(239, 68, 68, 0.4);
  flex-shrink: 0;
}
.dz-showcase-fire-icon .dz-svg-icon {
  width: 28px;
  height: 28px;
}

.dz-showcase-text-wrap {
  display: flex;
  flex-direction: column;
}

.dz-showcase-tag-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.dz-showcase-hot-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.4) 0%, rgba(220, 38, 38, 0.2) 100%);
  border: 1px solid rgba(239, 68, 68, 0.7);
  padding: 2px 10px;
  border-radius: 20px;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  animation: dzPulseFlame 2.5s infinite alternate ease-in-out;
}

.dz-showcase-off-tag {
  font-size: 0.72rem;
  font-weight: 900;
  color: #0b1d3a;
  background: linear-gradient(135deg, #fef08a 0%, #facc15 100%);
  border: 1px solid #fef08a;
  padding: 2px 10px;
  border-radius: 20px;
  box-shadow: 0 0 14px rgba(250, 204, 21, 0.4);
}

@keyframes dzPulseFlame {
  0% {
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.75);
    border-color: rgba(239, 68, 68, 1);
  }
}

.dz-showcase-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.dz-showcase-subtitle {
  font-size: 0.82rem;
  color: #94a3b8;
  margin: 0;
}

.dz-showcase-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.dz-showcase-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}
.dz-showcase-nav-btn:hover {
  background: #0284c7;
  border-color: #0284c7;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.4);
  transform: scale(1.08);
}

.dz-showcase-viewall-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 25px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
  transition: all 0.25s ease;
}
.dz-showcase-viewall-btn:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.5);
}

.dz-bestsellers-swiper {
  padding: 0.35rem 0.15rem 2.4rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
  direction: ltr !important;
}
.dz-bestsellers-swiper .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
}
.dz-bestsellers-swiper .swiper-slide {
  direction: rtl !important;
  height: auto !important;
  box-sizing: border-box;
  flex: 0 0 168px;
  width: 168px !important;
  max-width: 168px;
}
@media (min-width: 480px) {
  .dz-bestsellers-swiper .swiper-slide {
    flex-basis: 176px;
    width: 176px !important;
    max-width: 176px;
  }
}
@media (min-width: 768px) {
  .dz-bestsellers-swiper .swiper-slide {
    flex-basis: 190px;
    width: 190px !important;
    max-width: 190px;
  }
}
@media (min-width: 1024px) {
  .dz-bestsellers-swiper .swiper-slide {
    flex-basis: 204px;
    width: 204px !important;
    max-width: 204px;
  }
}
@media (min-width: 1280px) {
  .dz-bestsellers-swiper .swiper-slide {
    flex-basis: 214px;
    width: 214px !important;
    max-width: 214px;
  }
}

.dz-bestsellers-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 1rem;
}
.dz-bestsellers-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.28);
  opacity: 1;
  transition: width 0.25s ease, background 0.25s ease;
}
.dz-bestsellers-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 8px;
  background: linear-gradient(90deg, #38bdf8, #fbbf24);
}

/* --- Homepage product cards (bookstore layout) --- */
.dz-hpc {
  background: #ffffff;
  border-radius: 18px;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.dz-hpc:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.28);
}
.dz-hpc-cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  padding: 14px 12px 8px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  text-decoration: none;
}
.dz-hpc-img {
  max-height: 186px;
  width: auto !important;
  max-width: 150px;
  height: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 10px 18px rgba(11, 29, 58, 0.2));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.dz-hpc:hover .dz-hpc-img {
  transform: scale(1.05) translateY(-4px);
}
.dz-hpc-discount {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 9px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(220, 38, 38, 0.35);
}
.dz-hpc-hot {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(11, 29, 58, 0.88);
  color: #fbbf24;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}
.dz-hpc-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 0.9rem 1rem;
  flex: 1;
}
.dz-hpc-meta {
  font-size: 0.7rem;
  font-weight: 800;
  color: #0284c7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dz-hpc-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.dz-hpc-formats span {
  font-size: 0.62rem;
  font-weight: 800;
  color: #57534e;
  background: #f5efe6;
  border-radius: 999px;
  padding: 2px 7px;
}
.dz-hpc-title {
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
  min-height: 2.9em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dz-hpc-title a {
  color: #0b1d3a;
  text-decoration: none;
}
.dz-hpc:hover .dz-hpc-title a {
  color: #0369a1;
}
.dz-hpc-price-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 0.45rem;
}
.dz-hpc-old {
  font-size: 0.72rem;
  color: #94a3b8;
  text-decoration: line-through;
}
.dz-hpc-now {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.dz-hpc-amount {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0b1d3a;
}
.dz-hpc-unit {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
}
.dz-hpc-cart {
  margin-top: 0.55rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: #f1f5f9;
  color: #0b1d3a !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.dz-hpc-cart .dz-svg-icon {
  width: 15px;
  height: 15px;
}
.dz-hpc:hover .dz-hpc-cart,
.dz-hpc-cart:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff !important;
  border-color: #0284c7;
}
.dz-hpc-empty {
  padding: 2rem;
  text-align: center;
  color: #cbd5e1;
}

@media (max-width: 992px) {
  .dz-deals-showcase-box {
    padding: 1.5rem 1.15rem 1.25rem;
  }
  .dz-showcase-header {
    flex-wrap: wrap;
    gap: 0.85rem;
  }
  .dz-showcase-title {
    font-size: 1.15rem;
  }
  .dz-hpc-cover {
    height: 180px;
  }
  .dz-hpc-img {
    max-height: 156px;
  }
}

@media (max-width: 580px) {
  .dz-deals-showcase-box {
    padding: 1.15rem 0.75rem 1rem;
    border-radius: 16px;
    margin-bottom: 2rem;
  }
  .dz-showcase-fire-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.2rem;
  }
  .dz-showcase-fire-icon .dz-svg-icon {
    width: 22px;
    height: 22px;
  }
  .dz-showcase-title {
    font-size: 0.95rem;
  }
  .dz-showcase-subtitle {
    display: none;
  }
  .dz-showcase-viewall-btn span {
    display: none;
  }
  .dz-showcase-viewall-btn {
    padding: 0.45rem 0.65rem;
    border-radius: 50%;
  }
  .dz-hpc {
    border-radius: 14px;
  }
  .dz-hpc-cover {
    height: 158px;
    padding: 10px 8px 6px;
  }
  .dz-hpc-img {
    max-height: 138px;
  }
  .dz-hpc-body {
    padding: 0.7rem 0.7rem 0.8rem;
  }
  .dz-hpc-title {
    font-size: 0.78rem;
    min-height: 2.7em;
  }
  .dz-hpc-amount {
    font-size: 0.92rem;
  }
  .dz-hpc-cart span {
    display: none;
  }
  .dz-hpc-cart {
    min-height: 40px;
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dz-hpc,
  .dz-hpc-img,
  .dz-hpc-cart {
    transition: none;
  }
}

/* Mobile Responsiveness - Compact & Sleek Cards */
@media (max-width: 768px) {
  .dz-deals-showcase-box {
    padding: 1.15rem 0.75rem 1rem;
    border-radius: 16px;
    margin-bottom: 2rem;
  }
  .dz-bestsellers-swiper {
    padding: 0.25rem 0 0.5rem;
  }
  .dz-product-card-pro {
    padding: 0.65rem 0.5rem 0.55rem;
    border-radius: 12px;
  }
  .dz-card-cover-wrap {
    height: 135px;
    margin: 0.15rem 0 0.5rem;
    border-radius: 8px;
  }
  .dz-card-title {
    font-size: 0.76rem;
    line-height: 1.3;
    height: 2.6em;
  }
  .dz-card-author {
    font-size: 0.65rem;
    margin-bottom: 0.35rem;
  }
  .dz-price-old {
    font-size: 0.68rem;
  }
  .dz-price-amount {
    font-size: 0.95rem;
  }
  .dz-price-unit {
    font-size: 0.65rem;
  }
  .dz-partner-price-tag {
    font-size: 0.62rem;
    padding: 1px 5px;
    margin-bottom: 0.35rem;
  }
  .dz-card-add-btn {
    padding: 0.4rem 0.45rem;
    font-size: 0.72rem;
    border-radius: 9px;
  }
  .dz-discount-badge {
    font-size: 0.62rem;
    padding: 1px 5px;
  }
  .dz-guarantee-badge {
    font-size: 0.55rem;
    padding: 1px 4px;
  }
  .dz-quick-btn {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .dz-deals-showcase-box {
    padding: 0.85rem 0.5rem 0.75rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
  }
  .dz-product-card-pro {
    padding: 0.45rem 0.35rem 0.45rem;
    border-radius: 10px;
  }
  .dz-card-cover-wrap {
    height: 110px;
    margin: 0.1rem 0 0.35rem;
    border-radius: 6px;
  }
  .dz-card-title {
    font-size: 0.7rem;
    line-height: 1.25;
    height: 2.5em;
  }
  .dz-card-author {
    font-size: 0.6rem;
    margin-bottom: 0.25rem;
  }
  .dz-meta-level {
    font-size: 0.56rem;
    padding: 1px 4px;
  }
  .dz-card-stars {
    font-size: 0.55rem;
  }
  .dz-price-old {
    font-size: 0.62rem;
  }
  .dz-price-amount {
    font-size: 0.85rem;
  }
  .dz-price-unit {
    font-size: 0.58rem;
  }
  .dz-partner-price-tag {
    font-size: 0.56rem;
    padding: 1px 3px;
    margin-bottom: 0.25rem;
  }
  .dz-card-add-btn {
    padding: 0.32rem 0.35rem;
    font-size: 0.66rem;
    border-radius: 7px;
    gap: 0.25rem;
  }
  .dz-card-add-btn .dz-svg-icon {
    width: 12px;
    height: 12px;
  }
  .dz-slider-header {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
}

/* ==========================================================================
   MID-PAGE PROMO BANNERS (OXFORD & TEACHING BOOKS)
   ========================================================================== */
.dz-promo-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0 3.5rem;
}
.dz-promo-card {
  border-radius: var(--dz-radius-md);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(11, 29, 58, 0.07);
  border: 1.5px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: #f8fafc;
}
.dz-promo-card a {
  display: block;
  width: 100%;
}
.dz-promo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1856 / 576;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.dz-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(11, 29, 58, 0.14);
  border-color: #38bdf8;
}
.dz-promo-card:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .dz-promo-banner-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin: 1rem 0 2rem;
  }
}

/* =========================================================
   Blog: homepage slider + archive + single (desktop & app)
   Brand: navy #0b1d3a · sky #0284c7 · cream #f7f0e6
   ========================================================= */

.dz-bcard-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #94a3b8;
  display: inline-block;
  vertical-align: middle;
}

/* --- Homepage blog slider --- */
.dz-home-blog {
  margin: 2.5rem auto 3.25rem;
}
.dz-home-blog-shell {
  position: relative;
  border-radius: 28px;
  padding: 1.75rem 1.5rem 1.35rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(2, 132, 199, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(247, 240, 230, 0.9), transparent 50%),
    linear-gradient(160deg, #fffdf9 0%, #f7f0e6 45%, #eef6fb 100%);
  border: 1px solid rgba(11, 29, 58, 0.08);
  box-shadow: 0 18px 40px rgba(11, 29, 58, 0.07);
  overflow: hidden;
}
.dz-home-blog-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 29, 58, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  opacity: 0.5;
}
.dz-home-blog-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.35rem;
}
.dz-home-blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0284c7;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.dz-home-blog-kicker .dz-svg-icon {
  width: 1rem;
  height: 1rem;
}
.dz-home-blog-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 900;
  color: #0b1d3a;
  line-height: 1.35;
}
.dz-home-blog-sub {
  margin: 0.4rem 0 0;
  max-width: 36rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}
.dz-home-blog-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.dz-home-blog-nav {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(11, 29, 58, 0.12);
  background: #fff;
  color: #0b1d3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.dz-home-blog-nav:hover {
  background: #0b1d3a;
  color: #fff;
  border-color: #0b1d3a;
  transform: translateY(-1px);
}
.dz-home-blog-nav .dz-svg-icon {
  width: 1.05rem;
  height: 1.05rem;
}
.dz-home-blog-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b1d3a 0%, #14335f 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(11, 29, 58, 0.22);
  transition: transform 0.2s ease;
}
.dz-home-blog-all:hover {
  transform: translateY(-2px);
  color: #fff;
}
.dz-home-blog-all .dz-svg-icon {
  width: 0.95rem;
  height: 0.95rem;
}
.dz-blog-swiper {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
  overflow: hidden;
}
.dz-blog-slide {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(11, 29, 58, 0.07);
  box-shadow: 0 10px 28px rgba(11, 29, 58, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.dz-blog-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(11, 29, 58, 0.12);
}
.dz-blog-slide-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}
.dz-blog-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.dz-blog-slide:hover .dz-blog-slide-media img {
  transform: scale(1.06);
}
.dz-blog-slide-cat,
.dz-bcard-cat {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  background: rgba(11, 29, 58, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.dz-blog-slide-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 1.05rem 1.15rem;
  flex: 1;
}
.dz-blog-slide-meta,
.dz-bcard-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}
.dz-blog-slide-title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.45;
}
.dz-blog-slide-title a {
  color: #0b1d3a;
  text-decoration: none;
}
.dz-blog-slide:hover .dz-blog-slide-title a {
  color: #0284c7;
}
.dz-blog-slide-excerpt {
  margin: 0;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.dz-blog-slide-more,
.dz-bcard-more {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0284c7;
  font-weight: 800;
  font-size: 0.84rem;
  text-decoration: none;
}
.dz-blog-slide-more .dz-svg-icon,
.dz-bcard-more .dz-svg-icon {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 0.2s ease;
}
.dz-blog-slide-more:hover .dz-svg-icon,
.dz-bcard-more:hover .dz-svg-icon {
  transform: translateX(-3px);
}
.dz-blog-pagination {
  bottom: 0 !important;
}
.dz-blog-pagination .swiper-pagination-bullet {
  background: #94a3b8;
  opacity: 0.45;
}
.dz-blog-pagination .swiper-pagination-bullet-active {
  background: #0284c7;
  opacity: 1;
  width: 18px;
  border-radius: 999px;
}

/* --- Blog archive cards --- */
.dz-blog-page {
  padding-bottom: 3rem;
}
.dz-blog-hero {
  position: relative;
  margin-bottom: 1.75rem;
  padding: 2.25rem 0 2rem;
  background:
    linear-gradient(135deg, rgba(11, 29, 58, 0.94) 0%, rgba(15, 46, 82, 0.92) 55%, rgba(2, 132, 199, 0.78) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: #fff;
  overflow: hidden;
}
.dz-blog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.dz-blog-app-back {
  display: none;
  align-items: center;
  gap: 0.35rem;
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  margin-bottom: 0.85rem;
}
.dz-blog-app-back .dz-svg-icon {
  width: 1rem;
  height: 1rem;
}
.dz-blog-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #7dd3fc;
  margin-bottom: 0.55rem;
}
.dz-blog-hero-title {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
}
.dz-blog-hero-sub {
  margin: 0.65rem 0 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.75;
}
.dz-blog-archive {
  margin-bottom: 2rem;
}
.dz-blog-featured-wrap {
  margin-bottom: 1.5rem;
}
.dz-blog-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.dz-blog-grid-pro--related {
  grid-template-columns: repeat(3, 1fr);
}
.dz-bcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(11, 29, 58, 0.08);
  box-shadow: 0 10px 28px rgba(11, 29, 58, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.dz-bcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(11, 29, 58, 0.1);
}
.dz-bcard-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}
.dz-bcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dz-bcard:hover .dz-bcard-media img {
  transform: scale(1.05);
}
.dz-bcard-body {
  padding: 1.05rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.dz-bcard-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.45;
}
.dz-bcard-title a {
  color: #0b1d3a;
  text-decoration: none;
}
.dz-bcard:hover .dz-bcard-title a {
  color: #0284c7;
}
.dz-bcard-excerpt {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.dz-bcard--featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 320px;
}
.dz-bcard--featured .dz-bcard-media {
  aspect-ratio: auto;
  min-height: 100%;
}
.dz-bcard--featured .dz-bcard-body {
  padding: 1.75rem 1.5rem;
  justify-content: center;
}
.dz-bcard--featured .dz-bcard-title {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}
.dz-bcard--featured .dz-bcard-excerpt {
  -webkit-line-clamp: 4;
  font-size: 0.95rem;
}
.dz-blog-pagination {
  margin-top: 2.25rem;
}
.dz-blog-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dz-blog-pagination .page-numbers li {
  margin: 0;
}
.dz-blog-pagination .page-numbers a,
.dz-blog-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(11, 29, 58, 0.1);
  color: #0b1d3a;
  font-weight: 700;
  text-decoration: none;
}
.dz-blog-pagination .page-numbers .current,
.dz-blog-pagination .page-numbers a:hover {
  background: #0b1d3a;
  border-color: #0b1d3a;
  color: #fff;
}
.dz-blog-empty {
  text-align: center;
  padding: 3.5rem 1rem;
  color: #64748b;
}
.dz-blog-empty .dz-svg-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

/* --- Single article --- */
.dz-article-page {
  padding-bottom: 3rem;
}
.dz-article-hero {
  padding: 2rem 0 1.5rem;
  background:
    linear-gradient(180deg, #f7f0e6 0%, #fff 70%);
  border-bottom: 1px solid rgba(11, 29, 58, 0.06);
}
.dz-article-hero-inner {
  max-width: 820px;
  margin-inline: auto;
}
.dz-article-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.dz-article-cat {
  display: inline-flex;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}
.dz-article-title {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #0b1d3a;
  line-height: 1.4;
}
.dz-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1rem;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
}
.dz-article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.dz-article-meta-item .dz-svg-icon {
  width: 0.95rem;
  height: 0.95rem;
  color: #0284c7;
}
.dz-article-cover {
  margin: 1.5rem auto 0;
  max-width: 920px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(11, 29, 58, 0.12);
}
.dz-article-cover-img {
  display: block;
  width: 100%;
  height: auto;
}
.dz-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 1.5rem;
  max-width: 920px;
  margin: 2rem auto 0;
  align-items: start;
}
.dz-article-content {
  background: #fff;
  border: 1px solid rgba(11, 29, 58, 0.07);
  border-radius: 24px;
  padding: 1.75rem 1.6rem 2rem;
  box-shadow: 0 10px 28px rgba(11, 29, 58, 0.04);
  color: #334155;
  font-size: 1.05rem;
  line-height: 2;
}
.dz-article-content h2,
.dz-article-content h3 {
  color: #0b1d3a;
  font-weight: 850;
  margin: 1.6rem 0 0.75rem;
  line-height: 1.4;
}
.dz-article-content p {
  margin: 0 0 1.1rem;
}
.dz-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}
.dz-article-content a {
  color: #0284c7;
  font-weight: 700;
}
.dz-article-aside {
  position: sticky;
  top: 6.5rem;
}
.dz-article-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.dz-article-share-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.78rem;
  font-weight: 800;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.dz-article-share-label .dz-svg-icon {
  width: 0.85rem;
  height: 0.85rem;
  transform: rotate(180deg);
}
.dz-article-share-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dz-share-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.dz-share-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}
.dz-share-btn .dz-svg-icon {
  width: 1.15rem;
  height: 1.15rem;
}
.dz-share-wa {
  background: #25d366;
}
.dz-share-tg {
  background: #0284c7;
}
.dz-article-related {
  margin-top: 2.75rem;
}

@media (max-width: 1100px) {
  .dz-blog-grid-pro,
  .dz-blog-grid-pro--related {
    grid-template-columns: repeat(2, 1fr);
  }
  .dz-bcard--featured {
    grid-template-columns: 1fr;
  }
  .dz-bcard--featured .dz-bcard-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}

@media (max-width: 992px) {
  body.dz-app-blog .dz-blog-app-back,
  body.dz-app-article .dz-blog-app-back {
    display: inline-flex;
  }
  body.dz-app-blog .dz-main-header,
  body.dz-app-article .dz-main-header {
    display: none;
  }
  body.dz-app-blog,
  body.dz-app-article {
    padding-bottom: 5.5rem;
  }
  .dz-home-blog {
    margin: 1.25rem auto 2rem;
  }
  .dz-home-blog-shell {
    border-radius: 22px;
    padding: 1.2rem 0.95rem 1rem;
  }
  .dz-home-blog-head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }
  .dz-home-blog-actions {
    justify-content: space-between;
  }
  .dz-home-blog-all {
    flex: 1;
    justify-content: center;
  }
  .dz-blog-hero {
    margin: 0 0 1.15rem;
    padding: 1.15rem 0 1.35rem;
    border-radius: 0 0 22px 22px;
  }
  .dz-blog-grid-pro,
  .dz-blog-grid-pro--related {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }
  .dz-bcard,
  .dz-blog-slide {
    border-radius: 18px;
  }
  .dz-article-hero {
    padding: 1rem 0 1.15rem;
  }
  .dz-article-layout {
    grid-template-columns: 1fr;
    margin-top: 1.15rem;
    gap: 1rem;
  }
  .dz-article-aside {
    position: static;
    order: 2;
  }
  .dz-article-share {
    flex-direction: row;
    justify-content: space-between;
    background: #fff;
    border: 1px solid rgba(11, 29, 58, 0.08);
    border-radius: 16px;
    padding: 0.75rem 1rem;
  }
  .dz-article-share-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .dz-article-share-label .dz-svg-icon {
    transform: none;
  }
  .dz-article-share-row {
    flex-direction: row;
  }
  .dz-article-content {
    padding: 1.15rem 1rem 1.35rem;
    border-radius: 18px;
    font-size: 1rem;
    line-height: 1.9;
  }
  .dz-article-cover {
    border-radius: 18px;
    margin-top: 1rem;
  }
  .dz-article-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  .dz-home-blog-nav {
    display: none;
  }
  .dz-blog-slide-title {
    font-size: 0.95rem;
  }
}
