/* ===== SAFHA BOOK SHOP - MAIN STYLES ===== */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --accent: #f59e0b;
  --dark: #1e293b;
  --gray: #64748b;
  --light-gray: #f1f5f9;
  --border: #e2e8f0;
  --white: #ffffff;
  --success: #10b981;
  --danger: #ef4444;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(14,165,233,0.18);
  --radius: 10px;
  --font: 'Hind Siliguri', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: #f8fafc;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* TOPBAR */
.topbar {
  background: var(--primary-dark);
  color: white;
  font-size: 0.8rem;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar span { display: flex; align-items: center; gap: 6px; }
.topbar-right { margin-left: auto; }

/* HEADER */
.header {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img { height: 56px; }
.logo-text {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.logo-text small { font-size: 0.7rem; color: var(--gray); }

.search-bar {
  flex: 1;
  display: flex;
  position: relative;
  max-width: 560px;
}
.search-bar input {
  flex: 1;
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.search-bar input:focus { border-color: var(--primary); }
.search-bar button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s;
}
.search-bar button:hover { background: var(--primary-dark); }

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
  display: none;
}
.search-dropdown.open { display: block; }
.search-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid var(--border);
}
.search-item:hover { background: var(--primary-light); }
.search-item img { width: 36px; height: 48px; object-fit: cover; border-radius: 4px; }
.search-item-info { font-size: 0.88rem; }
.search-item-info strong { display: block; color: var(--dark); }
.search-item-info span { color: var(--primary); }

.header-actions { display: flex; gap: 8px; }
.action-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
  transition: all 0.2s;
}
.action-btn:hover { background: var(--primary); color: white; }
.badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* NAVBAR */
.navbar {
  background: var(--primary);
  position: sticky;
  top: 80px;
  z-index: 999;
}
.navbar .container { display: flex; align-items: center; }
.nav-toggle {
  display: none;
  color: white;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 600;
  gap: 8px;
  align-items: center;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
}
.nav-links li a {
  display: block;
  color: white;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-links li a:hover { background: rgba(255,255,255,0.15); }

/* HERO */
.hero { position: relative; overflow: hidden; }
.hero-slider { position: relative; }
.slide {
  display: none;
  padding: 60px 0;
  min-height: 340px;
  align-items: center;
}
.slide.active { display: flex; }
.slide-content {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
.slide-text { color: white; max-width: 520px; }
.slide-text h1 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 2.4rem;
  margin-bottom: 14px;
  line-height: 1.3;
}
.slide-text p { font-size: 1.05rem; margin-bottom: 24px; opacity: 0.93; }
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-align: center;
}
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--primary-light); }
.btn-outline-white { background: transparent; color: white; border-color: white; }
.btn-outline-white:hover { background: white; color: var(--primary); }
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-danger { background: var(--danger); color: white; }
.btn-success { background: var(--success); color: white; }
.btn-sm { padding: 6px 14px; font-size: 0.83rem; }
.btn-block { display: block; width: 100%; }

.book-stack { font-size: 5rem; display: flex; gap: -10px; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.slider-dots { text-align: center; padding: 12px; background: rgba(0,0,0,0.15); }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); margin: 0 4px; cursor: pointer; transition: background 0.2s; }
.dot.active { background: white; }

/* FEATURES BAR */
.features-bar { background: white; border-bottom: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-right: 1px solid var(--border);
}
.feature:last-child { border-right: none; }
.feature i { font-size: 1.8rem; color: var(--primary); }
.feature strong { display: block; font-size: 0.93rem; }
.feature small { color: var(--gray); font-size: 0.8rem; }

/* SECTIONS */
.section { padding: 40px 0; }
.bg-light { background: var(--light-gray); }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-header h2 {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 1.5rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 8px;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.see-all { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 4px; }
.see-all:hover { text-decoration: underline; }

/* CATEGORIES */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.cat-card {
  background: white;
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  border-top: 3px solid var(--c, var(--primary));
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.cat-card span { font-size: 2rem; display: block; margin-bottom: 8px; }
.cat-card p { font-size: 0.82rem; font-weight: 600; color: var(--dark); }

/* BOOK GRID */
.books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.book-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
}
.book-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.book-card .badge-new {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--success);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 2;
}
.book-card .badge-discount {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--danger);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 2;
}
.book-card .wishlist-btn {
  position: absolute;
  top: 38px; right: 10px;
  background: white;
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  z-index: 2;
  transition: all 0.2s;
}
.book-card .wishlist-btn:hover, .book-card .wishlist-btn.active { color: var(--danger); }

.book-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--light-gray);
}
.book-thumb-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), #bfdbfe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.book-info { padding: 14px; }
.book-cat { font-size: 0.72rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.book-title { font-family: 'Noto Serif Bengali', serif; font-size: 0.97rem; font-weight: 700; margin-bottom: 4px; line-height: 1.4; }
.book-title a { color: var(--dark); }
.book-title a:hover { color: var(--primary); }
.book-author { font-size: 0.82rem; color: var(--gray); margin-bottom: 10px; }
.book-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.price-now { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.price-old { font-size: 0.85rem; color: var(--gray); text-decoration: line-through; }
.book-stars { color: var(--accent); font-size: 0.75rem; margin-bottom: 10px; }

.book-actions { display: flex; gap: 8px; }
.book-actions .btn { flex: 1; font-size: 0.8rem; padding: 8px 10px; border-radius: 6px; }

/* PROMO BANNER */
.promo-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 40px 0;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo-inner h2 { font-size: 2rem; margin-bottom: 10px; }
.promo-inner p { opacity: 0.9; margin-bottom: 20px; }
.promo-icon { font-size: 5rem; }

/* BOOKS PAGE FILTERS */
.page-layout { display: flex; gap: 24px; }
.sidebar {
  width: 240px;
  flex-shrink: 0;
}
.sidebar-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 18px;
}
.sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  color: var(--dark);
}
.filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 0.88rem;
}
.filter-item input { cursor: pointer; }
.filter-item:hover { color: var(--primary); }
.filter-count { margin-left: auto; background: var(--light-gray); border-radius: 20px; padding: 2px 8px; font-size: 0.75rem; }

.main-content { flex: 1; }

.sort-bar {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sort-bar span { font-size: 0.9rem; color: var(--gray); }
.sort-bar select {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--font);
  font-size: 0.88rem;
  cursor: pointer;
}

.books-grid-5 { grid-template-columns: repeat(3, 1fr); }

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
}
.page-btn {
  width: 38px; height: 38px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.page-btn:hover, .page-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* BOOK DETAIL */
.book-detail-grid { display: grid; grid-template-columns: 280px 1fr; gap: 30px; }
.book-cover-box img, .book-cover-box .cover-placeholder {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.cover-placeholder { background: linear-gradient(135deg, var(--primary-light), #bfdbfe); height: 380px; display: flex; align-items: center; justify-content: center; font-size: 6rem; border-radius: var(--radius); }
.book-detail-info h1 { font-family: 'Noto Serif Bengali', serif; font-size: 1.8rem; margin-bottom: 8px; }
.book-detail-info .author-line { color: var(--gray); margin-bottom: 12px; }
.book-detail-info .price-box { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.book-detail-info .price-box .price-now { font-size: 1.6rem; }
.detail-meta { background: var(--light-gray); border-radius: var(--radius); padding: 16px; margin-bottom: 20px; }
.meta-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.meta-row:last-child { border-bottom: none; }
.meta-row strong { color: var(--gray); }
.qty-box { display: flex; align-items: center; gap: 0; margin-bottom: 16px; }
.qty-btn { width: 38px; height: 38px; border: 1px solid var(--border); background: white; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.qty-btn:first-child { border-radius: 6px 0 0 6px; }
.qty-btn:last-child { border-radius: 0 6px 6px 0; }
.qty-input { width: 54px; height: 38px; border: 1px solid var(--border); border-left: none; border-right: none; text-align: center; font-family: var(--font); font-size: 1rem; }
.detail-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.detail-btns .btn { min-width: 160px; }

/* CART */
.cart-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; }
.cart-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cart-table th { background: var(--light-gray); padding: 14px 16px; text-align: left; font-size: 0.88rem; color: var(--gray); }
.cart-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-book-info { display: flex; gap: 12px; align-items: center; }
.cart-book-img { width: 48px; height: 64px; object-fit: cover; border-radius: 4px; background: var(--light-gray); }
.cart-summary { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; height: fit-content; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.93rem; }
.summary-row.total { font-size: 1.1rem; font-weight: 700; color: var(--primary); border-bottom: none; }

/* CHECKOUT */
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; }
.form-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; margin-bottom: 20px; }
.form-card h3 { font-size: 1.1rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.payment-method { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.pay-option { border: 2px solid var(--border); border-radius: 8px; padding: 10px 18px; cursor: pointer; font-size: 0.9rem; transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.pay-option.selected, .pay-option:hover { border-color: var(--primary); background: var(--primary-light); }

/* AUTH */
.auth-container { max-width: 440px; margin: 60px auto; padding: 0 16px; }
.auth-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }
.auth-card h2 { text-align: center; font-family: 'Noto Serif Bengali', serif; font-size: 1.6rem; margin-bottom: 24px; color: var(--primary); }
.auth-tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.auth-tab { flex: 1; text-align: center; padding: 10px; cursor: pointer; font-weight: 600; color: var(--gray); transition: all 0.2s; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.auth-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ORDERS */
.order-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; margin-bottom: 16px; }
.order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.order-id { font-weight: 700; color: var(--primary); }
.order-status { padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-processing { background: #dbeafe; color: #1e40af; }
.status-shipped { background: #d1fae5; color: #065f46; }
.status-delivered { background: #dcfce7; color: #15803d; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--dark);
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s;
  max-width: 300px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--danger); }

/* FOOTER */
.footer { background: var(--dark); color: #94a3b8; padding: 50px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 30px; }
.footer-logo { font-family: 'Noto Serif Bengali', serif; font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-col p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 10px; }
.footer-col h4 { color: white; font-size: 1rem; margin-bottom: 14px; }
.footer-col ul li a { font-size: 0.88rem; color: #94a3b8; transition: color 0.2s; display: block; padding: 4px 0; }
.footer-col ul li a:hover { color: var(--primary); }
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #94a3b8; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.social-links a:hover { background: var(--primary); color: white; }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge { background: rgba(255,255,255,0.1); color: white; padding: 4px 10px; border-radius: 4px; font-size: 0.78rem; font-weight: 600; }
.footer-bottom { text-align: center; padding: 18px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px; font-size: 0.85rem; }
.footer-bottom a { color: var(--primary); }

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 30px 0;
  margin-bottom: 30px;
}
.page-header h1 { font-family: 'Noto Serif Bengali', serif; font-size: 1.8rem; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; opacity: 0.85; margin-top: 6px; }
.breadcrumb a { color: white; }

/* EMPTY STATE */
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray); }
.empty-state .icon { font-size: 4rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--dark); }

/* MOBILE */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .books-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; flex-direction: column; width: 100%; background: var(--primary-dark); }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }

  .header-inner { flex-wrap: wrap; }
  .search-bar { order: 3; flex: 0 0 100%; }

  .slide-content { flex-direction: column; text-align: center; }
  .slide-text h1 { font-size: 1.6rem; }

  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .page-layout { flex-direction: column; }
  .sidebar { width: 100%; }
  .cart-layout, .checkout-layout, .book-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-inner { flex-direction: column; text-align: center; gap: 20px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .book-thumb, .book-thumb-placeholder { height: 160px; }
  .topbar { display: none; }
}
