:root {
  --deep-navy: #111322;
  --soft-gold: #dcb47c;
  --cloud: #f7f5f2;
}

body {
  font-family: 'Work Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--cloud);
  color: #1f1f1f;
}

.title,
.brand-mark {
  font-family: 'Playfair Display', serif;
}

.navbar .navbar-item,
.navbar .navbar-link {
  color: white;
  font-weight: 500;
}

.navbar .navbar-item:hover,
.navbar .navbar-link:hover,
.navbar .navbar-item:focus,
.navbar .navbar-link:focus {
  color: var(--soft-gold);
  background: transparent;
}

.luxe-hero {
  background: radial-gradient(circle at 20% 20%, rgba(220, 180, 124, 0.35), transparent 55%),
    linear-gradient(125deg, #111322 0%, #1d2038 65%, #2b2d4a 100%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--soft-gold);
}

.luxe-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 2.5rem;
  color: white;
  box-shadow: 0 30px 60px rgba(10, 10, 10, 0.35);
}

#tonight-panel {
  cursor: pointer;
}

#tonight-panel button {
  pointer-events: auto;
}

#book-grid {
  gap: 1.5rem;
}

.book-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 20px 40px rgba(27, 28, 33, 0.08);
  display: flex;
  flex-direction: column;
}

.book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(27, 28, 33, 0.18);
}

.book-card.focus-pulse {
  box-shadow: 0 35px 60px rgba(220, 180, 124, 0.45);
  transform: translateY(-6px);
}

.book-card figure img {
  height: 280px;
  object-fit: cover;
  width: 100%;
}

.book-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.book-meta {
  margin-bottom: 1rem;
}

.book-meta p {
  margin-bottom: 0.35rem;
}

.book-price {
  font-size: 1.25rem;
  color: var(--soft-gold);
  font-weight: 600;
}

.book-list {
  margin: 1rem 0 1.25rem;
  padding-left: 1.25rem;
  color: #4a4a4a;
  font-size: 0.95rem;
}

.book-list li {
  margin-bottom: 0.5rem;
}

.book-list strong {
  color: #1f1f1f;
}

.book-list .byline {
  display: block;
  font-size: 0.85rem;
  color: #7a7a7a;
  margin-top: 0.15rem;
}

.book-list .blurb {
  display: block;
  margin-top: 0.1rem;
}

.shadowed {
  box-shadow: 0 20px 40px rgba(17, 19, 34, 0.12);
  border-radius: 18px;
}

.cart-items {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 1rem;
  padding-right: 0.5rem;
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.cart-row strong {
  font-weight: 600;
}

.cart-row button {
  border: none;
  background: transparent;
  color: #999;
  cursor: pointer;
}

.cart-row button:hover {
  color: var(--deep-navy);
}

.discount-field {
  margin-bottom: 1.5rem;
}

.totals .level {
  padding: 0.35rem 0;
}

.rituals .ritual-card {
  border: 1px solid rgba(17, 19, 34, 0.1);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.modal-card {
  border-radius: 18px;
}

.modal-card-head,
.modal-card-foot {
  border: none;
}

.modal-card-title {
  font-family: 'Playfair Display', serif;
}

.cart-modal-card {
  width: 90%;
  max-width: 720px;
}

.cart-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  border-radius: 999px;
  padding: 0 1.5rem;
  box-shadow: 0 15px 30px rgba(17, 19, 34, 0.25);
  background: var(--deep-navy);
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 50;
}

.cart-fab:hover {
  background: #070810;
}

.cart-fab .icon {
  color: var(--soft-gold);
}

.collection-header {
  margin-bottom: 2rem;
}

.collection-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.collection-ellipsis {
  font-size: 2rem;
  letter-spacing: 0.5rem;
  color: rgba(17, 19, 34, 0.4);
}

.luxe-footer {
  background: #0b0c18;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media screen and (max-width: 768px) {
  .hero-body .columns {
    flex-direction: column;
  }

  .book-card figure img {
    height: 220px;
  }

  .cart-fab {
    bottom: 1.5rem;
    right: 1.25rem;
  }
}
