/**
 * Custom CSS - Penerbit Zayra (PT. Zayra Teknologi Utama)
 * Bright, Energetic, Professional Book Publishing Theme
 * 3-Sidebar / 3-Column Layout Architecture
 */

:root {
  --zy-primary: #1d4ed8;       /* Royal Ocean Blue */
  --zy-primary-light: #3b82f6; /* Bright Blue */
  --zy-primary-subtle: #eff6ff;
  --zy-secondary: #0ea5e9;     /* Sky Cyan */
  --zy-accent: #f97316;        /* Vivid Tangerine Orange */
  --zy-accent-hover: #ea580c;
  --zy-accent-light: #fff7ed;
  --zy-yellow: #f59e0b;        /* Amber Sun */
  --zy-yellow-light: #fef3c7;
  --zy-green: #10b981;         /* Emerald Green (WA, Success) */
  --zy-green-hover: #059669;
  --zy-green-light: #ecfdf5;
  --zy-dark: #0f172a;          /* Deep Slate */
  --zy-muted: #64748b;         /* Muted Slate */
  --zy-border: #e2e8f0;        /* Light Border */
  --zy-bg: #f8fafc;            /* Crisp Bright Background */
  --zy-card-bg: #ffffff;
  --zy-radius-sm: 8px;
  --zy-radius-md: 14px;
  --zy-radius-lg: 20px;
  --zy-shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  --zy-shadow-md: 0 10px 25px -5px rgba(29, 78, 216, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --zy-shadow-lg: 0 20px 35px -10px rgba(29, 78, 216, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--zy-bg);
  color: #334155;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Top Notification / Banner Bar */
.top-announcement-bar {
  background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 50%, #f97316 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 0;
}

/* Navbar */
.zy-navbar {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid #edf2f7;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.zy-navbar .navbar-brand {
  padding: 0;
  margin-right: 1rem;
}

.zy-navbar .nav-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: #475569;
  padding: 6px 10px !important;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}

.zy-navbar .nav-link:hover {
  color: var(--zy-primary);
  background-color: #f1f5f9;
}

.zy-navbar .nav-link.active {
  color: var(--zy-primary);
  background-color: #eff6ff;
  font-weight: 700;
}

.zy-navbar .nav-link i {
  font-size: 0.95rem;
  line-height: 1;
}

.brand-badge {
  background: linear-gradient(135deg, var(--zy-accent) 0%, var(--zy-yellow) 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.search-pill-box {
  background: #f1f5f9;
  border-radius: 30px;
  padding: 2px 4px 2px 10px;
  border: 1.5px solid #e2e8f0;
  transition: all 0.2s ease;
  min-width: 150px;
  max-width: 200px;
  width: 100%;
}

.search-pill-box:focus-within {
  background: #ffffff;
  border-color: var(--zy-primary-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.search-pill-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.82rem;
  padding: 3px 6px 3px 0;
  width: 100%;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--zy-accent) 0%, #ea580c 100%);
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-nav-cta:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
  transform: translateY(-1px);
}

/* ==========================================================================
   3-COLUMN / 3-SIDEBAR LAYOUT SYSTEM
   ========================================================================== */
.main-wrapper-3col {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 40px;
}

.sidebar-left {
  flex: 0 0 260px;
  max-width: 260px;
}

.center-content {
  flex: 1;
  min-width: 0; /* Prevents overflow inside flex child */
}

.sidebar-right {
  flex: 0 0 280px;
  max-width: 280px;
}

/* Sticky behavior for sidebars */
.sticky-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}

@media (max-width: 1199.98px) {
  .main-wrapper-3col {
    flex-wrap: wrap;
  }
  .sidebar-left {
    flex: 0 0 280px;
    max-width: 280px;
  }
  .center-content {
    flex: 1 1 calc(100% - 304px);
  }
  .sidebar-right {
    flex: 0 0 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 991.98px) {
  .main-wrapper-3col {
    flex-direction: column;
    gap: 20px;
  }
  .center-content {
    order: 1;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sidebar-left {
    order: 2;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sidebar-right {
    order: 3;
    flex: 0 0 100%;
    max-width: 100%;
    display: block;
  }

  /* Mobile Navbar Dropdown Enhancement */
  .zy-navbar .navbar-collapse {
    background: #ffffff;
    padding: 14px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
  }
  .zy-navbar .search-pill-box {
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 8px 0 !important;
  }
  .zy-navbar .nav-link {
    width: 100%;
    padding: 9px 12px !important;
  }
  .zy-navbar .btn-nav-cta {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    padding: 9px 16px;
  }
}

@media (max-width: 767.98px) {
  .hero-banner-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .hero-title {
    font-size: 1.35rem;
    line-height: 1.3;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  .package-card-horizontal {
    padding: 16px;
  }
  .border-start-md {
    border-left: none !important;
    border-top: 1px dashed #e2e8f0;
    padding-top: 12px;
    margin-top: 8px;
  }
  .zy-card {
    padding: 14px;
  }
}

@media (max-width: 575.98px) {
  .top-announcement-bar {
    font-size: 0.75rem;
  }
  .tracking-stepper {
    margin: 20px 0;
  }
  .tracking-stepper::before {
    top: 17px;
    left: 15px;
    right: 15px;
    height: 3px;
  }
  .step-circle {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
    border-width: 2.5px;
    margin-bottom: 4px;
  }
  .step-label {
    font-size: 0.65rem;
    line-height: 1.15;
  }
  .book-card {
    padding: 10px;
  }
  .book-title-link {
    font-size: 0.8rem;
    min-height: 30px;
  }
  .book-author-text {
    font-size: 0.7rem;
  }
  .book-price-tag {
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   WIDGETS & CARDS
   ========================================================================== */
.zy-card {
  background: var(--zy-card-bg);
  border-radius: var(--zy-radius-md);
  border: 1px solid var(--zy-border);
  box-shadow: var(--zy-shadow-sm);
  padding: 18px;
  margin-bottom: 20px;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zy-card:hover {
  box-shadow: var(--zy-shadow-md);
}

.zy-widget-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--zy-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
}

.zy-widget-header .icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Color Accent Icon Badges */
.badge-blue { background: #dbeafe; color: #1d4ed8; }
.badge-orange { background: #ffedd5; color: #ea580c; }
.badge-green { background: #d1fae5; color: #059669; }
.badge-yellow { background: #fef3c7; color: #d97706; }
.badge-purple { background: #f3e8ff; color: #7e22ce; }

/* Category Navigation List (Left Sidebar) */
.category-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-nav-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--zy-radius-sm);
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  margin-bottom: 3px;
}

.category-nav-item a:hover,
.category-nav-item.active a {
  background: var(--zy-primary-subtle);
  color: var(--zy-primary);
  font-weight: 600;
  transform: translateX(4px);
}

.category-nav-item .count-badge {
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 12px;
  font-weight: 600;
}

.category-nav-item a:hover .count-badge,
.category-nav-item.active a .count-badge {
  background: var(--zy-primary);
  color: #ffffff;
}

/* Template and Guide Download Items */
.template-dl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid #fed7aa;
  border-radius: 10px;
  padding: 8px 10px;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.2s ease;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 8px;
}

.template-dl-item:last-child {
  margin-bottom: 0;
}

.template-dl-item:hover {
  background: #fff7ed;
  border-color: #f97316;
  color: #c2410c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.12);
}

.template-dl-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ffedd5;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.template-dl-item:hover .template-dl-icon {
  background: #ea580c;
  color: #ffffff;
}

.template-dl-info {
  flex: 1;
  min-width: 0;
}

.template-dl-title {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1e293b;
  margin-bottom: 0;
  display: block;
}

.template-dl-item:hover .template-dl-title {
  color: #c2410c;
}

.template-dl-action {
  font-size: 0.88rem;
  color: #94a3b8;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.template-dl-item:hover .template-dl-action {
  color: #ea580c;
  transform: translateX(2px);
}

/* Quick Menu List */
.quick-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-menu-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  color: #334155;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}

.quick-menu-list li a:hover {
  background: #f8fafc;
  color: var(--zy-primary);
}

/* Hero Section (Center Column) */
.hero-banner-card {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
  color: #ffffff;
  border-radius: var(--zy-radius-lg);
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(30, 64, 175, 0.25);
  margin-bottom: 24px;
}

.hero-banner-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-banner-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: 60px;
  width: 150px;
  height: 150px;
  background: rgba(249, 115, 22, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero-title {
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #e0f2fe;
  margin-bottom: 22px;
}

/* Buttons */
.btn-zy-primary {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.25);
  transition: all 0.25s ease;
}

.btn-zy-primary:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.35);
}

.btn-zy-accent {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
  transition: all 0.25s ease;
}

.btn-zy-accent:hover {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.4);
}

.btn-zy-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
  transition: all 0.25s ease;
}

.btn-zy-green:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  transform: translateY(-2px);
}

/* 5 Steps Publishing Workflow */
.flow-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  position: relative;
  transition: all 0.25s;
  height: 100%;
}

.flow-step-card:hover {
  border-color: var(--zy-primary-light);
  transform: translateY(-4px);
  box-shadow: var(--zy-shadow-md);
}

.step-num-bubble {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zy-primary) 0%, var(--zy-secondary) 100%);
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  box-shadow: 0 4px 10px rgba(29, 78, 216, 0.2);
}

/* Book Grid Cards */
.book-card {
  background: #ffffff;
  border-radius: var(--zy-radius-md);
  border: 1px solid #e2e8f0;
  padding: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.book-card-cover {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
  aspect-ratio: 1 / 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.book-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.book-card:hover .book-card-cover img {
  transform: scale(1.03);
}

.book-badge-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 2px 7px;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.book-title-link {
  font-weight: 700;
  font-size: 0.85rem;
  color: #1e293b;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 34px;
}

.book-title-link:hover {
  color: var(--zy-primary);
}

.book-author-text {
  font-size: 0.74rem;
  color: #64748b;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.book-isbn-text {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.book-price-tag {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--zy-accent);
}

.category-pill-filter {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.category-pill-filter:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.category-pill-filter.active {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #93c5fd;
  font-weight: 700;
}

/* 3D Book Detail Showcase */
.book-cover-3d-wrapper {
  perspective: 1000px;
  display: inline-block;
}

.book-cover-3d {
  width: 100%;
  max-width: 260px;
  border-radius: 6px 14px 14px 6px;
  box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: rotateY(-8deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.book-cover-3d:hover {
  transform: rotateY(0deg) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

/* Package Pricing Cards */
.package-card {
  border-radius: var(--zy-radius-lg);
  border: 2px solid #e2e8f0;
  background: #ffffff;
  padding: 24px 20px;
  transition: all 0.3s;
  position: relative;
  height: 100%;
}

.package-card.popular {
  border-color: var(--zy-primary);
  box-shadow: var(--zy-shadow-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.package-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f97316, #ea580c);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Package Card Horizontal Layout */
.package-card-horizontal {
  border-radius: var(--zy-radius-md);
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  padding: 20px 22px;
  transition: all 0.25s ease;
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}

.package-card-horizontal:last-child {
  margin-bottom: 0;
}

.package-card-horizontal:hover {
  border-color: var(--zy-primary-light);
  box-shadow: 0 10px 25px -5px rgba(29, 78, 216, 0.1);
  transform: translateY(-2px);
}

.package-card-horizontal.popular {
  border-color: #3b82f6;
  border-width: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  box-shadow: 0 8px 20px -4px rgba(59, 130, 246, 0.15);
}

.package-card-horizontal .popular-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px 4px 12px;
  border-bottom-left-radius: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.package-price-box {
  background: #f8fafc;
  border-radius: 10px;
  padding: 8px 14px;
  border: 1px solid #e2e8f0;
  display: inline-block;
}

.package-card-horizontal.popular .package-price-box {
  background: #eff6ff;
  border-color: #bfdbfe;
}

@media (min-width: 768px) {
  .border-start-md {
    border-left: 1px solid #e2e8f0 !important;
  }
}

/* Progress Tracker for ISBN / Submissions */
.tracking-stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 30px 0;
}

.tracking-stepper::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 30px;
  right: 30px;
  height: 4px;
  background: #e2e8f0;
  z-index: 1;
}

.tracking-step-item {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #cbd5e1;
  color: #94a3b8;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px auto;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.tracking-step-item.completed .step-circle {
  background: var(--zy-green);
  border-color: var(--zy-green);
  color: white;
}

.tracking-step-item.active .step-circle {
  background: var(--zy-primary);
  border-color: var(--zy-primary);
  color: white;
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.2);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(29, 78, 216, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(29, 78, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(29, 78, 216, 0); }
}

.step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
}

.tracking-step-item.active .step-label,
.tracking-step-item.completed .step-label {
  color: var(--zy-dark);
}

/* Sidebar Right Mini Cards */
.mini-book-item {
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #e2e8f0;
}

.mini-book-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mini-book-cover {
  width: 55px;
  height: 75px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* WhatsApp Floating Callout */
.wa-widget-box {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0;
  border-radius: var(--zy-radius-md);
  padding: 16px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

/* Footer Styling */
.zy-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 50px 0 20px 0;
  font-size: 0.9rem;
  border-top: 4px solid var(--zy-accent);
}

.zy-footer h6 {
  color: #f8fafc;
  font-weight: 700;
  margin-bottom: 16px;
}

.zy-footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.zy-footer a:hover {
  color: var(--zy-accent);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  margin-top: 40px;
}

/* Table Style for Admin & Packages */
.zy-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--zy-border);
}

.zy-table thead {
  background: #f1f5f9;
  color: var(--zy-dark);
  font-weight: 700;
  font-size: 0.88rem;
}
