/* ============================================================
   SAASETU — SHARED STYLESHEET
   All pages import this file.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap");

/* ── Variables ───────────────────────────────────────────── */
:root {
  --black: #0e0e0e;
  --off-black: #181818;
  --white: #ffffff;
  --gray-bg: #f4f4f2;
  --gray-100: #f0f0ee;
  --gray-150: #e8e8e6;
  --gray-200: #e0e0de;
  --gray-300: #c8c8c6;
  --gray-400: #a0a09e;
  --gray-500: #78786f;
  --gray-600: #555550;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --green: #22c55e;
  --green-bg: #e6f4ea;
  --yellow-bg: #fff8c5;
  --pink-bg: #fdd5e3;
  --red: #ef4444;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --nav-h: 64px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 36px rgba(0, 0, 0, 0.13);
  --shadow-xl: 0 20px 56px rgba(0, 0, 0, 0.18);
  --t: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 15px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul,
ol {
  list-style: none;
}
input,
textarea,
select {
  font-family: inherit;
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 100;
}
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--black);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--t);
  box-shadow: var(--shadow-sm);
}
.nav-logo:hover .nav-logo-icon {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.nav-logo-icon svg {
  width: 22px;
  height: 22px;
}
.nav-logo-name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
}
.nav-links a,
.nav-links span {
  white-space: nowrap;
}
.nav-links a {
  transition: var(--t);
}
.nav-links a:hover {
  color: var(--black);
}
.nav-links .active-link {
  color: var(--black);
  font-weight: 700;
}
.nav-links .accent-link {
  color: var(--accent);
}
.nav-links .sep {
  color: var(--gray-300);
}
.nav-links .muted {
  color: var(--gray-400);
  cursor: default;
}

.nav-concierge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  color: #4f46e5;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid #c7d2fe;
  transition: var(--t);
}
.nav-concierge:hover {
  background: linear-gradient(135deg, #e0e7ff, #ede9fe);
}
.nav-concierge svg {
  width: 13px;
  height: 13px;
}
.nav-divider {
  width: 1px;
  height: 22px;
  background: var(--gray-200);
}

.btn-login {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 7px 10px;
  border-radius: 8px;
  transition: var(--t);
}
.btn-login:hover {
  color: var(--black);
  background: var(--gray-100);
}

.btn-signup {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--black);
  padding: 8px 17px;
  border-radius: 9px;
  transition: var(--t);
  box-shadow: var(--shadow-sm);
}
.btn-signup:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-cart {
  position: relative;
  padding: 7px;
  border-radius: 50%;
  color: var(--gray-600);
  transition: var(--t);
}
.btn-cart:hover {
  background: var(--gray-100);
  color: var(--black);
}
.btn-cart svg {
  width: 19px;
  height: 19px;
  display: block;
}
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--t);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary svg {
  width: 16px;
  height: 16px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--gray-100);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--t);
}
.btn-secondary:hover {
  background: var(--gray-200);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: #16a34a;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  transition: var(--t);
  box-shadow: var(--shadow-md);
}
.btn-green:hover {
  background: #15803d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-green svg {
  width: 17px;
  height: 17px;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  transition: var(--t);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.3);
}
.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

/* ── Section Helpers ─────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-desc {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 540px;
  line-height: 1.75;
}
.section-header {
  margin-bottom: 48px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-desc {
  margin: 0 auto;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0;
  border-top: 1px solid #1f1f1f;
}
.footer .container {
  text-align: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}
.footer-copy {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 12px;
}
.footer-admin {
  font-size: 11px;
  color: #374151;
  transition: var(--t);
  cursor: pointer;
  display: inline-block;
}
.footer-admin:hover {
  color: #9ca3af;
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-up {
  animation: fadeUp 0.45s ease forwards;
}
.fade-up-1 {
  animation: fadeUp 0.45s 0.1s ease both;
}
.fade-up-2 {
  animation: fadeUp 0.45s 0.2s ease both;
}
.fade-up-3 {
  animation: fadeUp 0.45s 0.3s ease both;
}

/* ── Modal (auth) ────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: var(--t);
}
.modal-close:hover {
  background: var(--gray-200);
}
.modal-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 4px;
}
.modal-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 26px;
}

/* ── Forms ───────────────────────────────────────────────── */
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--black);
  background: var(--gray-100);
  transition: var(--t);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.07);
}
.form-textarea {
  resize: vertical;
  min-height: 90px;
}
.form-submit {
  width: 100%;
  padding: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--t);
  margin-top: 8px;
}
.form-submit:hover {
  background: #333;
  transform: translateY(-1px);
}
.modal-switch {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 18px;
}
.modal-switch a {
  color: var(--black);
  font-weight: 700;
  cursor: pointer;
}
.modal-switch a:hover {
  color: var(--accent);
}

/* ── Playbook Card (shared across pages) ─────────────────── */
.playbook-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-150);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--t);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.playbook-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-200);
}

.playbook-cover {
  position: relative;
  height: 210px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.playbook-card:hover .playbook-cover {
  background: var(--gray-150);
}

.book-3d {
  position: relative;
  width: 100px;
  height: 145px;
  border-radius: 0 6px 6px 0;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transform: perspective(700px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.playbook-card:hover .book-3d {
  transform: perspective(700px) rotateY(-2deg) rotateX(0deg);
}
.book-3d-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-left: 9px solid rgba(0, 0, 0, 0.25);
}
.book-3d-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 55%,
    rgba(255, 255, 255, 0.18)
  );
}
.book-3d-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 9px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.05));
}

.playbook-price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.badge-free {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.badge-paid {
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  border: 1px solid var(--gray-200);
  backdrop-filter: blur(4px);
}

.playbook-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.playbook-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.playbook-cat {
  padding: 2px 7px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
}
.playbook-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--gray-400);
}
.playbook-rating svg {
  width: 10px;
  height: 10px;
  fill: #eab308;
  color: #eab308;
}
.playbook-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 5px;
  transition: var(--t);
}
.playbook-card:hover .playbook-title {
  color: var(--accent);
}
.playbook-subtitle {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resources-wrap {
  margin-bottom: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}
.resources-label {
  font-size: 9px;
  color: var(--gray-400);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}
.resources-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.resource-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-600);
}
.resource-chip svg {
  width: 11px;
  height: 11px;
}
.chip-pdf svg {
  color: var(--gray-500);
}
.chip-excel svg {
  color: #16a34a;
}
.chip-video svg {
  color: #dc2626;
}
.chip-slides svg {
  color: #d97706;
}
.chip-checklist svg {
  color: #ea580c;
}
.chip-flowchart svg {
  color: var(--accent);
}

.playbook-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}
.card-author {
  display: flex;
  align-items: center;
  gap: 7px;
}
.card-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  object-fit: cover;
}
.card-author-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.card-author-role {
  font-size: 9px;
  color: var(--gray-400);
}
.card-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0;
  transform: translateX(5px);
  transition: var(--t);
}
.playbook-card:hover .card-cta {
  opacity: 1;
  transform: translateX(0);
}
.card-cta svg {
  width: 11px;
  height: 11px;
}

/* ── SVG icon helpers ─────────────────────────────────────── */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ============================================================
   HERO (index.html)
   ============================================================ */
.hero {
  position: relative;
  background: var(--gray-bg);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 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'%3E%3Cg fill='%230e0e0e' fill-opacity='0.03'%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");
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.blob-1 {
  top: -18%;
  left: -8%;
  width: 50%;
  height: 50%;
  background: rgba(134, 239, 172, 0.35);
  animation: pulse 8s ease-in-out infinite;
}
.blob-2 {
  top: 5%;
  right: -8%;
  width: 40%;
  height: 60%;
  background: rgba(249, 168, 212, 0.3);
  animation: pulse 10s ease-in-out infinite reverse;
}
.blob-3 {
  bottom: -8%;
  left: 20%;
  width: 40%;
  height: 40%;
  background: rgba(253, 224, 71, 0.25);
  animation: pulse 12s ease-in-out infinite;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 80px;
}
.hero-content {
  flex: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
.hero-badge span {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 22px;
}
.hero-gradient {
  background: linear-gradient(135deg, var(--black), #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 34px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.hero-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
}
.avatar-stack {
  display: flex;
}
.avatar-stack img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -7px;
  object-fit: cover;
}
.avatar-stack img:first-child {
  margin-left: 0;
}
.hero-stats {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat-icon {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
  margin-bottom: 2px;
}
.stat-icon svg {
  width: 16px;
  height: 16px;
}
.stat-icon svg.green {
  color: #16a34a;
}
.stat-icon svg.blue {
  color: var(--accent);
}
.stat-icon svg.red {
  color: #dc2626;
}
.hero-stat p {
  font-size: 11px;
  color: var(--gray-500);
}
.hero-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
.book-stack {
  position: relative;
  width: 190px;
  height: 270px;
}
.book-card {
  position: absolute;
  width: 160px;
  height: 230px;
  background: var(--white);
  border-radius: 0 12px 12px 0;
  border-left: 9px solid var(--black);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  transition: var(--t);
}
.book-card:hover {
  transform: rotate(0deg) translate(0, 0) !important;
}
.bc-main {
  z-index: 3;
  transform: rotate(3deg) translate(8px, 0);
}
.bc-back1 {
  z-index: 2;
  transform: rotate(1deg) translate(18px, 11px);
  background: var(--off-black);
  border-left-color: #444;
}
.bc-back2 {
  z-index: 1;
  transform: rotate(-1deg) translate(28px, 22px);
  background: var(--gray-200);
  border-left-color: #ccc;
}
.book-inner {
  text-align: center;
}
.book-ico {
  width: 52px;
  height: 52px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.book-ico svg {
  width: 24px;
  height: 24px;
}
.book-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 10px;
}
.book-bar {
  width: 34px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 10px;
  border-radius: 2px;
}
.book-ed {
  font-size: 9px;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Trusted Brands */
.trusted {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.trusted-label {
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 26px;
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 44px;
  max-width: 900px;
  margin: 0 auto;
}
.brand-name {
  font-family: var(--serif);
  font-size: clamp(15px, 2vw, 21px);
  font-weight: 700;
  color: var(--gray-200);
  cursor: default;
  transition: var(--t);
  white-space: nowrap;
}
.brand-name:hover {
  color: var(--black);
}

/* Features Grid */
.features {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feat-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--t);
}
.feat-card:hover {
  transform: translateY(-4px);
}
.feat-card.green {
  background: var(--green-bg);
  border-color: #bbf7d0;
}
.feat-card.yellow {
  background: var(--yellow-bg);
  border-color: #fef08a;
}
.feat-card.pink {
  background: var(--pink-bg);
  border-color: #fbcfe8;
}
.feat-card.red {
  background: #ef4444;
  border-color: #f87171;
  color: var(--white);
}
.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.feat-card:hover .feat-icon {
  transform: scale(1.12);
}
.feat-card.green .feat-icon {
  background: #22c55e;
}
.feat-card.yellow .feat-icon {
  background: #eab308;
}
.feat-card.pink .feat-icon {
  background: #ec4899;
}
.feat-card.red .feat-icon {
  background: rgba(255, 255, 255, 0.2);
}
.feat-icon svg {
  width: 17px;
  height: 17px;
}
.feat-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feat-card.green .feat-title {
  color: #14532d;
}
.feat-card.yellow .feat-title {
  color: #713f12;
}
.feat-card.pink .feat-title {
  color: #831843;
}
.feat-card.red .feat-title {
  color: var(--white);
}
.feat-desc {
  font-size: 12px;
  line-height: 1.6;
}
.feat-card.green .feat-desc {
  color: rgba(22, 101, 52, 0.8);
}
.feat-card.yellow .feat-desc {
  color: rgba(113, 63, 18, 0.8);
}
.feat-card.pink .feat-desc {
  color: rgba(131, 24, 67, 0.8);
}
.feat-card.red .feat-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Playbooks Section */
.playbooks-section {
  padding: 60px 0;
}
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--white);
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  flex-wrap: wrap;
  position: sticky;
  top: calc(var(--nav-h) + 8px);
  z-index: 30;
}
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--t);
  cursor: pointer;
  font-family: var(--sans);
}
.filter-tab.off {
  background: var(--gray-100);
  color: var(--gray-600);
  border: none;
}
.filter-tab.off:hover {
  background: var(--gray-200);
  color: var(--black);
}
.filter-tab.on {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  border: none;
}
.filter-search {
  position: relative;
  width: 250px;
}
.filter-search svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
  width: 15px;
  height: 15px;
}
.filter-search input {
  width: 100%;
  padding: 8px 14px 8px 33px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 12px;
  color: var(--black);
  outline: none;
  transition: var(--t);
}
.filter-search input:focus {
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.playbooks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Case Studies */
.case-studies {
  padding: 72px 0;
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-200);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}
.case-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-150);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  transition: var(--t);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.case-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.case-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.case-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gray-100);
  object-fit: cover;
}
.case-author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.case-author-role {
  font-size: 11px;
  color: var(--gray-500);
}
.case-icon-box {
  width: 34px;
  height: 34px;
  background: #eef2ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  flex-shrink: 0;
}
.case-icon-box svg {
  width: 17px;
  height: 17px;
}
.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 9px;
}
.case-badge svg {
  width: 12px;
  height: 12px;
}
.case-quote {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.case-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.case-foot-label {
  font-size: 9px;
  color: var(--gray-400);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.case-foot-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
}
.case-foot-val.metric {
  font-size: 14px;
  font-weight: 900;
  color: var(--accent);
}

/* ============================================================
   PLAYBOOK DETAIL  (playbook.html)
   ============================================================ */
.detail-wrap {
  padding-top: calc(var(--nav-h) + 32px);
  padding-bottom: 80px;
}
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 36px;
  transition: var(--t);
}
.detail-back:hover {
  color: var(--black);
}
.detail-back svg {
  width: 15px;
  height: 15px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

/* Sticky left */
.detail-left-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.detail-book-box {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}
.detail-book-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.06) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
}
.detail-book-3d {
  position: relative;
  width: 180px;
  height: 260px;
  border-radius: 0 10px 10px 0;
  box-shadow: 8px 8px 32px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-10deg) rotateX(3deg);
  transition: transform 0.5s ease;
  z-index: 1;
}
.detail-book-3d:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(0);
}
.detail-book-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-left: 12px solid rgba(0, 0, 0, 0.28);
}
.detail-book-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 55%,
    rgba(255, 255, 255, 0.15)
  );
}
.detail-book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05));
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.detail-stat {
  padding: 14px;
  background: var(--gray-100);
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  text-align: center;
}
.detail-stat-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
}
.detail-stat-lbl {
  font-size: 10px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Right column */
.detail-right {
}
.detail-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.badge-cat {
  padding: 4px 10px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
}
.badge-free-tag {
  padding: 4px 10px;
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
}
.star-row {
  display: flex;
  align-items: center;
  gap: 3px;
}
.star-row svg {
  width: 13px;
  height: 13px;
}
.star-row .reviews {
  font-size: 12px;
  color: var(--gray-500);
  margin-left: 5px;
}
.detail-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.1;
}
.detail-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 28px;
}

.upsell-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--black), #333);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--white);
  margin-bottom: 24px;
  text-decoration: none;
  transition: var(--t);
}
.upsell-banner:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.upsell-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.upsell-icon {
  padding: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}
.upsell-icon svg {
  width: 18px;
  height: 18px;
  color: #facc15;
}
.upsell-title {
  font-size: 13px;
  font-weight: 700;
}
.upsell-sub {
  font-size: 11px;
  color: #d1d5db;
}
.upsell-right {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.upsell-right:hover {
  color: var(--white);
}
.upsell-right svg {
  width: 14px;
  height: 14px;
}

.bundle-box {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.bundle-box-title {
  font-size: 11px;
  font-weight: 800;
  color: #3730a3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.bundle-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bundle-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  padding: 8px 13px;
  border-radius: 8px;
  border: 1px solid #c7d2fe;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
}
.bundle-chip svg {
  width: 16px;
  height: 16px;
}
.bundle-chip.pdf svg {
  color: var(--gray-500);
}
.bundle-chip.excel svg {
  color: #16a34a;
}
.bundle-chip.video svg {
  color: #dc2626;
}
.bundle-chip.slides svg {
  color: #d97706;
}
.bundle-chip.checklist svg {
  color: #ea580c;
}
.bundle-chip.flowchart svg {
  color: var(--accent);
}

.author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  margin-bottom: 24px;
}
.author-box img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.author-role {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}
.author-socials {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.author-socials a {
  color: var(--gray-400);
  transition: var(--t);
}
.author-socials a:hover {
  color: var(--accent);
}
.author-socials svg {
  width: 13px;
  height: 13px;
}

.detail-section-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}
.detail-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
}

.chapters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.chapter-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 8px;
  transition: var(--t);
}
.chapter-item:hover {
  background: var(--gray-100);
}
.chapter-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray-150);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--gray-600);
  flex-shrink: 0;
  margin-top: 1px;
}
.chapter-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}
.chapter-pages {
  font-size: 10px;
  color: var(--gray-400);
}

.purchase-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.purchase-price-val {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 900;
  color: var(--black);
}
.purchase-price-val.free-price {
  color: #16a34a;
}
.purchase-price-sub {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}
.purchase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-top: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--gray-400);
}
.trust-item svg {
  width: 13px;
  height: 13px;
}

/* ============================================================
   PRICING PAGE  (pricing.html)
   ============================================================ */
.pricing-page {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: var(--gray-bg);
  min-height: calc(100vh - var(--nav-h));
}
.pricing-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.pricing-header .section-title {
  font-size: clamp(32px, 4vw, 48px);
}
.pricing-header p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 820px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 34px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--t);
}
.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}
.pricing-card-dark {
  background: var(--black);
  border-color: var(--black);
  box-shadow: var(--shadow-xl);
  transform: translateY(-12px);
  position: relative;
  overflow: hidden;
}
.pricing-card-dark::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%);
  pointer-events: none;
}
.pricing-card-dark:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.pricing-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  background: #facc15;
  color: var(--black);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px;
}
.pricing-popular svg {
  width: 8px;
  height: 8px;
  fill: var(--black);
}
.pricing-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pricing-card .pricing-icon {
  background: var(--gray-100);
  color: var(--black);
}
.pricing-card-dark .pricing-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.pricing-icon svg {
  width: 20px;
  height: 20px;
}
.p-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 5px;
}
.pricing-card .p-name {
  color: var(--black);
}
.pricing-card-dark .p-name {
  color: var(--white);
}
.p-tag {
  font-size: 12px;
}
.pricing-card .p-tag {
  color: var(--gray-500);
}
.pricing-card-dark .p-tag {
  color: #9ca3af;
}
.p-amount {
  margin: 22px 0;
}
.p-price {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 800;
}
.pricing-card .p-price {
  color: var(--black);
}
.pricing-card-dark .p-price {
  color: var(--white);
}
.p-period {
  font-size: 13px;
  font-weight: 400;
}
.pricing-card .p-period {
  color: var(--gray-500);
}
.pricing-card-dark .p-period {
  color: #9ca3af;
}
.p-save {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
  margin-top: 5px;
}
.p-features {
  flex: 1;
  margin-bottom: 22px;
}
.p-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}
.pricing-card .p-feature {
  color: var(--gray-600);
}
.pricing-card-dark .p-feature {
  color: #d1d5db;
}
.check-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card .check-circle {
  background: #dcfce7;
}
.pricing-card-dark .check-circle {
  background: rgba(74, 222, 128, 0.15);
}
.check-circle svg {
  width: 9px;
  height: 9px;
}
.pricing-card .check-circle svg {
  color: #16a34a;
}
.pricing-card-dark .check-circle svg {
  color: #4ade80;
}
.btn-pricing-light {
  width: 100%;
  padding: 13px;
  background: var(--gray-100);
  color: var(--black);
  font-weight: 700;
  font-size: 13px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--t);
  border: none;
  font-family: var(--sans);
  display: block;
  text-align: center;
}
.btn-pricing-light:hover {
  background: var(--gray-200);
}
.btn-pricing-dark {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--t);
  border: none;
  font-family: var(--sans);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
  display: block;
  text-align: center;
}
.btn-pricing-dark:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 26px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}
.guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  color: #6b7280;
  margin-top: 9px;
}
.guarantee-note svg {
  width: 10px;
  height: 10px;
}
.pricing-faq {
  max-width: 600px;
  margin: 52px auto 0;
}
.pricing-faq h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  text-align: center;
  margin-bottom: 18px;
}
.faq-item {
  background: var(--white);
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid var(--gray-150);
  margin-bottom: 10px;
}
.faq-q {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.faq-a {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================================
   ADMIN  (admin.html)
   ============================================================ */
.admin-login-wrap {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-bg);
  padding: 40px 24px;
}
.admin-login-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-150);
}
.admin-lock {
  width: 64px;
  height: 64px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 20px;
}
.admin-lock svg {
  width: 28px;
  height: 28px;
}
.admin-login-card h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 6px;
}
.admin-login-card p {
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 24px;
}
.admin-error {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #dc2626;
  font-weight: 600;
  margin-top: 6px;
}
.admin-error span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dc2626;
  flex-shrink: 0;
}

.admin-wrap {
  display: flex;
  min-height: calc(100vh - var(--nav-h));
  padding-top: var(--nav-h);
}
.admin-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.admin-sidebar-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding: 0 8px;
}
.admin-nav {
  flex: 1;
}
.admin-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--t);
  margin-bottom: 4px;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  text-align: left;
}
.admin-nav-btn.off {
  background: transparent;
  color: var(--gray-600);
}
.admin-nav-btn.off:hover {
  background: var(--gray-100);
  color: var(--black);
}
.admin-nav-btn.on {
  background: var(--black);
  color: var(--white);
}
.admin-nav-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.admin-logout {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #dc2626;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 12px;
  border: none;
  background: none;
  font-family: var(--sans);
  transition: var(--t);
  border-top: 1px solid var(--gray-100);
  padding-top: 18px;
  margin-top: 8px;
}
.admin-logout:hover {
  color: #b91c1c;
}
.admin-logout svg {
  width: 13px;
  height: 13px;
}

.admin-content {
  flex: 1;
  padding: 36px 40px;
  background: var(--gray-bg);
  overflow-y: auto;
}
.admin-page-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
}
.admin-page-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

/* Stats cards */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--white);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--gray-150);
  box-shadow: var(--shadow-sm);
}
.stat-card-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.stat-card-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.stat-card-val {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
}
.stat-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.stat-pill.up {
  background: #dcfce7;
  color: #15803d;
}
.stat-pill.down {
  background: #fee2e2;
  color: #dc2626;
}

.admin-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-150);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 24px;
}
.admin-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-card-title svg {
  width: 17px;
  height: 17px;
  color: var(--gray-400);
}

/* Bar chart */
.bar-chart-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
  margin-top: 14px;
}
.bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
}
.bar-inner {
  flex: 1;
  width: 100%;
  background: var(--gray-100);
  border-radius: 4px 4px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bar-fill {
  width: 100%;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  transition: height 0.4s ease;
}
.bar-label {
  font-size: 9px;
  color: var(--gray-400);
  font-weight: 600;
}

/* Top playbooks table */
.top-table {
  width: 100%;
  border-collapse: collapse;
}
.top-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--gray-100);
}
.top-table td {
  padding: 12px 8px;
  font-size: 13px;
  vertical-align: middle;
}
.top-rank {
  width: 24px;
  height: 24px;
  background: var(--gray-100);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--gray-500);
}
.top-name {
  font-weight: 600;
  color: var(--black);
}
.top-val {
  font-weight: 800;
  color: var(--black);
  text-align: right;
  font-size: 13px;
}
.top-sub {
  font-size: 10px;
  color: var(--gray-400);
  text-align: right;
}

/* Demand / Search intel */
.demand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px;
  border-bottom: 1px solid var(--gray-100);
}
.search-row:last-child {
  border-bottom: none;
}
.search-term {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}
.search-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vol-pill {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 5px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-weight: 700;
}
.trend-up svg {
  color: var(--green);
  width: 13px;
  height: 13px;
}
.opp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fef2f2;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 8px;
}
.opp-item svg {
  width: 13px;
  height: 13px;
}

/* Upload Form */
.upload-form-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-150);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 20px;
}
.upload-form-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.upload-form-card-title svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
}
.upload-form-card-title.seo {
  color: var(--accent);
}
.upload-form-card-title.seo svg {
  color: var(--accent);
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid-2 .span-2 {
  grid-column: 1 / -1;
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-hint {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 4px;
}
.char-count {
  font-size: 10px;
  font-weight: 600;
  margin-left: auto;
}
.char-count.ok {
  color: var(--gray-400);
}
.char-count.over {
  color: #dc2626;
}
.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.gradient-presets {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  margin-top: 10px;
}
.grad-btn {
  height: 36px;
  border-radius: 7px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--t);
}
.grad-btn:hover {
  transform: scale(1.08);
  border-color: var(--black);
}
.color-preview-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.color-preview-row input {
  flex: 1;
}
.color-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.resource-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.res-toggle {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  font-family: var(--sans);
  background: var(--white);
  color: var(--gray-600);
}
.res-toggle:hover {
  border-color: var(--black);
  color: var(--black);
}
.res-toggle.selected {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.tag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}
.tag-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #eff6ff;
  color: var(--accent);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.tag-chip button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  padding: 0;
  transition: var(--t);
}
.tag-chip button:hover {
  color: #dc2626;
}
.kw-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #eff6ff;
  color: var(--accent);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.kw-chip button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  padding: 0;
}
.kw-chip button:hover {
  color: #dc2626;
}

.chapter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.chapter-row input:first-child {
  flex: 1;
}
.chapter-row input:last-of-type {
  width: 80px;
}
.chapter-row button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  padding: 4px;
  transition: var(--t);
}
.chapter-row button:hover {
  color: #dc2626;
}
.chapter-row button svg {
  width: 16px;
  height: 16px;
}
.add-chapter-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--sans);
}
.add-chapter-btn svg {
  width: 13px;
  height: 13px;
}
.add-chapter-btn:hover {
  color: var(--accent-dark);
}

.seo-sub-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
  margin-top: 18px;
}
.seo-sub-title svg {
  width: 14px;
  height: 14px;
  color: var(--gray-400);
}
.code-area {
  background: #111;
  color: #4ade80;
  font-family: monospace;
  font-size: 12px;
  border: 1px solid #333;
}
.noindex-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  margin-top: 14px;
}
.noindex-label {
  font-size: 11px;
  font-weight: 800;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.success-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.success-banner svg {
  width: 18px;
  height: 18px;
}
.btn-publish {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #16a34a;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--t);
  border: none;
  font-family: var(--sans);
  box-shadow: var(--shadow-md);
}
.btn-publish:hover {
  background: #15803d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-publish svg {
  width: 18px;
  height: 18px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links,
  .nav-concierge,
  .nav-divider,
  .btn-login,
  .btn-signup {
    display: none;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .playbooks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .pricing-card-dark {
    transform: none;
  }
  .admin-sidebar {
    width: 200px;
  }
  .demand-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    gap: 48px;
  }
  .hero-visual {
    display: none;
  }
  .features-grid,
  .case-grid,
  .playbooks-grid {
    grid-template-columns: 1fr;
  }
  .filter-search {
    width: 100%;
  }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-left-sticky {
    position: static;
  }
  .chapters-grid {
    grid-template-columns: 1fr;
  }
  .admin-wrap {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
    height: auto;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px;
    gap: 6px;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
  .admin-sidebar-label {
    display: none;
  }
  .admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .admin-nav-btn {
    width: auto;
    padding: 8px 12px;
    font-size: 11px;
  }
  .admin-logout {
    border: none;
    padding-top: 8px;
    margin-top: 0;
  }
  .admin-content {
    padding: 20px;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .form-grid-2 .span-2 {
    grid-column: auto;
  }
  .gradient-presets {
    grid-template-columns: repeat(4, 1fr);
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

.text-danger {
  color: red !important;
}
.text-success {
  color: green !important;
}

.successmain {
  background-color: #16a34a;
  border-color: #16a34a;
  font-weight: bold;
}
.valierror {
  background-color: #ee2e34;
  border-color: #ee2e34;
  color: #fff;
}
.alert-message {
  background-size: 40px 40px;
  width: 100%;
  border: 0px solid;
  color: #fff;
  padding: 10px;

  animation: animate-bg 5s linear infinite;
  display: block;
  margin-bottom: 5px;
  top: 0;
  z-index: 9999;
}

/* Update your header/nav style */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100; /* Standard height for navigation */
  background: #fff; /* Ensure it's not transparent */
}
/* Add to cart drover */

/* :root {
  --black: #111111;
  --dark: #1e1e1e;
  --accent: #c9a84c;
  --gray-50: #fafafa;
  --gray-100: #f3f3f3;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-900: #111827;
  --red: #ef4444;
  --white: #ffffff;
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
} */

/* body {
  font-family: "DM Sans", sans-serif;
  background: #f0ebe3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* Demo trigger button */
.demo-btn {
  padding: 14px 32px;
  background: #111111;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.demo-btn:hover {
  background: #1e1e1e;
}

/* ── Backdrop ── */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Drawer ── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%; /* or -400px depending on your setup */
  width: 400px;
  height: 100vh; /* Full viewport height */
  background: #fff;
  z-index: 2000;
  transition: 0.3s ease;

  /* ADD THESE THREE LINES */
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Prevent the whole drawer from scrolling */
}

.cart-drawer.open {
  right: 0; /* Slide in */
}

/* Ensure the overlay covers the header too */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999; /* Just below the drawer */
  display: none;
}

/* ── Header ── */
.drawer-header {
  padding: 24px;
  border-bottom: 1px solid #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  flex-shrink: 0;
}
.drawer-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: #1e1e1e;
  letter-spacing: 0.01em;
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition:
    background 300ms cubic-bezier(0.4, 0, 0.2, 1),
    color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.close-btn:hover {
  background: #f3f3f3;
  color: #111827;
}
.close-btn svg {
  width: 20px;
  height: 20px;
}

/* ── Items list ── */
.drawer-body {
  flex-grow: 1; /* Takes up all available space in the middle */
  overflow-y: auto; /* Only this part will scroll */
  padding: 20px;
}

/* Empty state */
.empty-state {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #6b7280;
  text-align: center;
}
.empty-icon {
  width: 64px;
  height: 64px;
  background: #f3f3f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}
.empty-icon svg {
  width: 24px;
  height: 24px;
}
.empty-state p {
  font-size: 14px;
}
.continue-link {
  background: none;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #c9a84c;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.continue-link:hover {
  opacity: 0.8;
}

/* Cart item card */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #fafafa;
  transition: border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-item:hover {
  border-color: #f3f3f3;
}

.item-image {
  width: 64px;
  height: 96px;
  background: #f3f3f3;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
}
.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}
.item-title {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  padding-right: 8px;
}
.remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #ef4444;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.remove-btn:hover {
  color: #ef4444;
}
.remove-btn svg {
  width: 14px;
  height: 14px;
}

.item-category {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 12px;
}

.item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.qty-badge {
  font-size: 11px;
  font-weight: 500;
  background: #f3f3f3;
  color: #4b5563;
  padding: 4px 10px;
  border-radius: 4px;
}
.item-price {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}

/* ── Footer ── */
.drawer-footer {
  padding: 24px;
  background: #fafafa;
  border-top: 1px solid #f3f3f3;
  flex-shrink: 0; /* Prevents the footer from squishing */
  position: sticky; /* Extra safety */
  bottom: 0;
}
.subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.subtotal-label {
  font-size: 14px;
  color: #4b5563;
}
.subtotal-amount {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  background: #111111;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition:
    background 300ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.1s ease;
}
.checkout-btn:hover {
  background: #1e1e1e;
}
.checkout-btn:active {
  transform: scale(0.99);
}
.checkout-btn svg {
  width: 18px;
  height: 18px;
}

.secure-note {
  margin-top: 12px;
  text-align: center;
  font-size: 10px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.secure-note svg {
  width: 10px;
  height: 10px;
}

/* ── Hidden class ── */
.hidden {
  display: none !important;
}

/* End Add to cart drover */
