/*
Theme Name: eBook Library
Theme URI: https://ultimateebooklibrary.com
Author: Ultimate eBook Library
Author URI: https://ultimateebooklibrary.com
Description: Premium dark eBook Library theme with WooCommerce, member area, and Elementor support. Built for ultimateebooklibrary.com — UAE's largest private ebook library.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ebooklibrary
Tags: e-commerce, woocommerce, elementor, dark, premium, membership

--- COLOUR SYSTEM ---
Background primary:   #090F1C
Background secondary: #0D1526
Accent emerald:       #10B981
Accent light:         #6EE7B7
Text primary:         #F1F5F9
Text secondary:       #94A3B8
Text muted:           #475569
Border subtle:        rgba(255,255,255,0.07)
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #090F1C;
  --bg2:       #0D1526;
  --bg3:       #111B2B;
  --accent:    #10B981;
  --accent-lt: #6EE7B7;
  --accent-dk: #059669;
  --text1:     #F1F5F9;
  --text2:     #CBD5E1;
  --text3:     #94A3B8;
  --text4:     #475569;
  --text5:     #334155;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --radius:    10px;
  --radius-lg: 14px;
  --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text2);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-lt); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--text1);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */
.text-xs   { font-size: 11px; }
.text-sm   { font-size: 13px; }
.text-base { font-size: 15px; }
.text-lg   { font-size: 17px; }
.text-xl   { font-size: 20px; }
.text-2xl  { font-size: 24px; }
.text-3xl  { font-size: 30px; }
.text-4xl  { font-size: 38px; }

.font-light  { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }

.text-muted   { color: var(--text4); }
.text-accent  { color: var(--accent); }
.text-primary { color: var(--text1); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }
section.section--sm { padding: 48px 0; }
section.section--lg { padding: 100px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 16px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  section { padding: 56px 0; }
  .text-4xl { font-size: 28px; }
  .text-3xl { font-size: 24px; }
}

/* =============================================
   COMPONENTS — BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-dk); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--text3);
  border: 0.5px solid var(--border2);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--text2); }

.btn--outline-accent {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(16,185,129,0.4);
}
.btn--outline-accent:hover { background: rgba(16,185,129,0.08); }

.btn--lg { padding: 14px 30px; font-size: 15px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }

/* =============================================
   COMPONENTS — CARDS
   ============================================= */
.card {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.card--accent { border-color: var(--accent); border-width: 1.5px; }

/* =============================================
   COMPONENTS — BADGES & PILLS
   ============================================= */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.pill--accent {
  background: rgba(16,185,129,0.08);
  color: var(--accent-lt);
  border: 0.5px solid rgba(16,185,129,0.2);
}
.pill--success {
  background: rgba(16,185,129,0.12);
  color: #A7F3D0;
  border: 0.5px solid rgba(16,185,129,0.25);
}
.pill--danger {
  background: rgba(239,68,68,0.1);
  color: #FCA5A5;
  border: 0.5px solid rgba(239,68,68,0.2);
}

.section-tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* =============================================
   URGENCY BAR
   ============================================= */
#urgency-bar {
  background: #0A1F14;
  border-bottom: 0.5px solid rgba(16,185,129,0.2);
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  color: #4B8B6E;
}
#urgency-bar strong { color: var(--accent-lt); }
#urgency-bar .pill { margin-left: 8px; vertical-align: middle; }

/* =============================================
   NAVIGATION
   ============================================= */
#site-header {
  background: var(--bg2);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo img { height: 36px; width: auto; }
.site-logo-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--text1);
  letter-spacing: -0.02em;
}
.site-logo-text span { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a { font-size: 13px; color: var(--text4); letter-spacing: -0.01em; }
.nav-menu a:hover, .nav-menu a.current { color: var(--text2); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login { font-size: 13px; color: var(--text4); background: none; border: none; cursor: pointer; font-family: var(--font-main); padding: 0; }
.nav-login:hover { color: var(--text2); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text3); margin: 5px 0; transition: all var(--transition); }

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 0.5px solid var(--border);
    padding: 20px 24px;
    gap: 18px;
    z-index: 999;
  }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  background: var(--bg);
  padding: 80px 0 72px;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
}
.hero-section h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  color: var(--text1);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 18px 0 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section h1 em { color: var(--accent); font-style: normal; }
.hero-tagline {
  font-size: 16px;
  color: var(--text4);
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto 12px;
  line-height: 1.7;
}
.hero-usp-pill {
  display: inline-block;
  background: var(--bg2);
  border: 0.5px solid var(--border2);
  border-radius: 99px;
  padding: 6px 18px;
  font-size: 13px;
  color: var(--text5);
  margin-bottom: 28px;
}
.hero-usp-pill span { color: var(--accent); }
.hero-btns { display: flex; gap: 12px; justify-content: center; margin-bottom: 14px; flex-wrap: wrap; }
.hero-price-note { font-size: 12px; color: var(--text5); margin-bottom: 40px; }
.hero-price-note s { color: #1E3A2F; }
.hero-price-note strong { color: var(--accent-lt); }

.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto;
}
.hero-stat {
  flex: 1;
  padding: 18px 12px;
  text-align: center;
  border-right: 0.5px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .n { font-size: 22px; font-weight: 500; color: var(--text1); letter-spacing: -0.03em; }
.hero-stat .l { font-size: 10px; color: var(--text5); margin-top: 3px; letter-spacing: 0.05em; }

/* =============================================
   BOOK SPINE STRIP
   ============================================= */
.spine-strip {
  background: var(--bg2);
  padding: 20px 0;
  border-bottom: 0.5px solid var(--border);
  overflow: hidden;
}
.spine-track {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  padding: 0 24px;
}
.spine-book {
  border-radius: 3px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section { background: var(--bg); }
.feature-card {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition);
}
.feature-card:hover { border-color: rgba(16,185,129,0.25); }
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(16,185,129,0.08);
  border: 0.5px solid rgba(16,185,129,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 15px; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text4); line-height: 1.65; font-weight: 300; }

/* =============================================
   CATEGORY SECTION
   ============================================= */
.categories-section { background: var(--bg2); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.category-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.category-card:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-2px); }
.category-books {
  padding: 20px 16px 12px;
  position: relative;
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -8px;
}
.cat-book {
  width: 58px;
  height: 88px;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.cat-book:nth-child(2) { margin-left: -14px; margin-bottom: 8px; z-index: 2; width: 64px; height: 96px; }
.cat-book:nth-child(3) { margin-left: -14px; }
.category-label {
  padding: 14px 16px;
  border-top: 0.5px solid var(--border);
  text-align: center;
}
.category-label h4 { font-size: 14px; font-weight: 500; color: var(--text1); margin-bottom: 2px; }
.category-label span { font-size: 11px; color: var(--text5); }

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section { background: var(--bg2); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 820px; margin: 32px auto 0; }

@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.plan-card.featured { border: 1.5px solid var(--accent); }
.plan-featured-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 16px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.plan-name { font-size: 11px; font-weight: 500; color: var(--text5); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.plan-title { font-size: 18px; font-weight: 500; color: var(--text1); margin-bottom: 16px; letter-spacing: -0.02em; }
.plan-price { font-size: 40px; font-weight: 500; color: var(--text1); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 17px; color: var(--text4); font-weight: 300; vertical-align: super; }
.plan-was { font-size: 12px; color: var(--text5); margin-bottom: 4px; }
.plan-was s { color: #1E293B; }
.plan-save { display: inline-block; background: rgba(16,185,129,0.1); color: var(--accent-lt); font-size: 10px; font-weight: 500; padding: 2px 10px; border-radius: 99px; border: 0.5px solid rgba(16,185,129,0.2); margin-bottom: 14px; letter-spacing: 0.03em; }
.plan-desc { font-size: 13px; color: var(--text5); margin-bottom: 20px; line-height: 1.6; font-weight: 300; }
.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li {
  font-size: 13px; color: var(--text4);
  padding: 7px 0;
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: flex-start; gap: 9px;
  line-height: 1.5; font-weight: 300;
}
.plan-features li:last-child { border: none; }
.plan-features li.active { color: var(--text3); }
.plan-features .check { width: 15px; height: 15px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 1px; }
.plan-features .cross { width: 15px; height: 15px; stroke: #1E293B; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 1px; }
.plan-btn { width: 100%; padding: 13px; border-radius: 10px; font-size: 14px; font-weight: 500; cursor: pointer; border: none; font-family: var(--font-main); letter-spacing: -0.01em; transition: all var(--transition); }
.plan-btn.primary { background: var(--accent); color: #fff; }
.plan-btn.primary:hover { background: var(--accent-dk); }
.plan-btn.secondary { background: transparent; color: var(--text4); border: 0.5px solid var(--border2); }
.plan-btn.secondary:hover { border-color: rgba(255,255,255,0.2); color: var(--text3); }
.plan-note { font-size: 10px; color: var(--text5); text-align: center; margin-top: 8px; }

.pricing-footer { text-align: center; margin-top: 20px; font-size: 12px; color: var(--text5); }
.pricing-urgency {
  max-width: 820px; margin: 20px auto 0;
  background: #0A1F14;
  border: 0.5px solid rgba(16,185,129,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.pu-text { font-size: 13px; color: #4B8B6E; font-weight: 300; }
.pu-text strong { color: var(--accent-lt); font-weight: 500; }
.countdown { display: flex; gap: 10px; }
.cd-box { background: var(--bg2); border: 0.5px solid rgba(16,185,129,0.15); border-radius: 7px; padding: 7px 12px; text-align: center; min-width: 46px; }
.cd-box .num { font-size: 18px; font-weight: 500; color: #A7F3D0; line-height: 1; }
.cd-box .lbl { font-size: 9px; color: #1E3A2F; margin-top: 2px; letter-spacing: 0.05em; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-section { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-top: 36px; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.step-num { font-size: 10px; font-weight: 500; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 14px; }
.step-card h4 { font-size: 14px; font-weight: 500; color: var(--text1); margin-bottom: 6px; }
.step-card p { font-size: 12px; color: var(--text5); line-height: 1.65; font-weight: 300; }
.step-detail { font-size: 11px; color: #1E3A2F; margin-top: 8px; padding: 6px 10px; background: #0A1F14; border-radius: 6px; line-height: 1.5; }

/* =============================================
   MEMBER AREA PREVIEW
   ============================================= */
.member-preview-section { background: var(--bg2); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.member-frame {
  border: 0.5px solid rgba(16,185,129,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.member-frame-top {
  background: var(--bg);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 0.5px solid var(--border);
}
.mf-nav { display: flex; gap: 24px; }
.mf-nav span { font-size: 13px; color: var(--text5); cursor: pointer; }
.mf-nav span.active { color: var(--text2); }
.member-badge { background: rgba(16,185,129,0.1); color: var(--accent); font-size: 11px; font-weight: 500; padding: 3px 12px; border-radius: 99px; border: 0.5px solid rgba(16,185,129,0.2); }
.member-frame-body { padding: 28px; background: var(--bg); }
.mf-header-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.mf-title { font-size: 18px; font-weight: 500; color: var(--text1); margin-bottom: 4px; }
.mf-subtitle { font-size: 13px; color: var(--text5); font-weight: 300; }
.mf-subtitle span { color: var(--accent); }
.requests-box { background: #0A1F14; border: 0.5px solid rgba(16,185,129,0.15); border-radius: var(--radius); padding: 10px 16px; text-align: center; }
.requests-box .rn { font-size: 22px; font-weight: 500; color: var(--accent-lt); line-height: 1; }
.requests-box .rl { font-size: 10px; color: #1E3A2F; margin-top: 2px; }
.member-search { display: flex; gap: 10px; margin-bottom: 20px; }
.member-search input { flex: 1; background: var(--bg2); border: 0.5px solid var(--border2); border-radius: var(--radius); padding: 10px 16px; font-size: 13px; color: var(--text3); font-family: var(--font-main); outline: none; }
.member-search input:focus { border-color: rgba(16,185,129,0.3); }
.member-search select { background: var(--bg2); border: 0.5px solid var(--border2); border-radius: var(--radius); padding: 10px 14px; font-size: 13px; color: var(--text4); font-family: var(--font-main); outline: none; }
.member-books-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 12px; margin-bottom: 20px; }
@media (max-width: 640px) { .member-books-grid { grid-template-columns: repeat(3,1fr); } }
.member-book { background: var(--bg2); border-radius: 8px; padding: 10px; cursor: pointer; }
.member-book-cover { width: 100%; aspect-ratio: 2/3; border-radius: 5px; margin-bottom: 6px; }
.member-book p { font-size: 10px; color: var(--text5); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.member-request-cta { background: #0A1F14; border: 0.5px solid rgba(16,185,129,0.15); border-radius: var(--radius); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mrc-text { font-size: 13px; color: #4B8B6E; font-weight: 300; }
.mrc-btn { background: var(--accent); color: #fff; font-size: 12px; font-weight: 500; padding: 8px 18px; border-radius: 7px; border: none; cursor: pointer; font-family: var(--font-main); white-space: nowrap; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--bg); }
.testimonial-card { background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.tc-stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.tc-text { font-size: 13px; color: var(--text4); line-height: 1.7; margin-bottom: 14px; font-weight: 300; font-style: italic; }
.tc-author { font-size: 12px; color: var(--text5); }
.tc-plan { font-size: 10px; color: #1E3A2F; margin-top: 4px; }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { background: var(--bg2); border-top: 0.5px solid var(--border); }
.faq-item { border-bottom: 0.5px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  font-family: var(--font-main);
  font-size: 15px; font-weight: 500; color: var(--text2);
  text-align: left; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  letter-spacing: -0.01em;
}
.faq-question .faq-icon { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.faq-answer { font-size: 14px; color: var(--text4); line-height: 1.75; font-weight: 300; padding-bottom: 20px; display: none; max-width: 680px; }
.faq-item.open .faq-answer { display: block; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { background: var(--bg); }
.cta-box {
  background: var(--bg2);
  border: 0.5px solid rgba(16,185,129,0.15);
  border-radius: 18px;
  padding: 64px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-box h2 { font-size: 32px; letter-spacing: -0.04em; margin-bottom: 12px; }
.cta-box p { font-size: 15px; color: var(--text5); margin-bottom: 12px; font-weight: 300; }
.cta-price-note { font-size: 13px; color: var(--text5); margin-bottom: 28px; }
.cta-price-note strong { color: var(--accent-lt); }
.cta-price-note s { color: #1E293B; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: #060C17;
  border-top: 0.5px solid rgba(255,255,255,0.04);
  padding: 40px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 13px; color: var(--text5); margin-top: 12px; line-height: 1.65; font-weight: 300; max-width: 260px; }
.footer-col h5 { font-size: 12px; font-weight: 500; color: var(--text3); margin-bottom: 14px; letter-spacing: 0.05em; }
.footer-col a { display: block; font-size: 13px; color: var(--text5); margin-bottom: 9px; font-weight: 300; }
.footer-col a:hover { color: var(--text3); }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,0.04); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: #1E293B; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: #1E293B; }

/* =============================================
   WOOCOMMERCE OVERRIDES
   ============================================= */
.woocommerce-page { background: var(--bg); }
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info {
  border-top-color: var(--accent);
  background: var(--bg2);
  color: var(--text2);
}
.woocommerce form .form-row label { color: var(--text3); font-size: 13px; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: var(--bg2);
  border: 0.5px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text2);
  padding: 12px 16px;
  font-family: var(--font-main);
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--accent); outline: none; box-shadow: none; }
.woocommerce #payment { background: var(--bg2); border-radius: var(--radius-lg); }
.woocommerce #payment div.payment_box { background: var(--bg); color: var(--text3); }
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-main) !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  padding: 12px 24px !important;
  border: none !important;
  transition: background var(--transition) !important;
}
.woocommerce button.button:hover { background: var(--accent-dk) !important; }
.woocommerce-MyAccount-navigation ul { list-style: none; }
.woocommerce-MyAccount-navigation li a { color: var(--text4); font-size: 14px; display: block; padding: 10px 0; border-bottom: 0.5px solid var(--border); }
.woocommerce-MyAccount-navigation li.is-active a { color: var(--accent); }
table.shop_table { background: var(--bg2); border-color: var(--border); color: var(--text2); }
table.shop_table th { color: var(--text3); font-weight: 500; border-color: var(--border); }
table.shop_table td { border-color: var(--border); }

/* =============================================
   MEMBER DASHBOARD PAGE
   ============================================= */
.member-dashboard { padding: 60px 0; }
.dashboard-welcome { margin-bottom: 40px; }
.dashboard-welcome h1 { font-size: 28px; margin-bottom: 6px; }
.dashboard-welcome p { font-size: 15px; color: var(--text4); font-weight: 300; }
.dashboard-grid { display: grid; grid-template-columns: 240px 1fr; gap: 28px; }
@media (max-width: 768px) { .dashboard-grid { grid-template-columns: 1fr; } }
.dashboard-sidebar { background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 20px; height: fit-content; }
.dashboard-sidebar .side-nav a { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text4); padding: 10px 12px; border-radius: var(--radius); margin-bottom: 4px; }
.dashboard-sidebar .side-nav a:hover, .dashboard-sidebar .side-nav a.active { background: rgba(16,185,129,0.08); color: var(--accent); }
.dashboard-content { background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.request-form { background: var(--bg); border: 0.5px solid rgba(16,185,129,0.15); border-radius: var(--radius); padding: 24px; margin-top: 28px; }
.request-form h3 { font-size: 16px; margin-bottom: 6px; }
.request-form p { font-size: 13px; color: var(--text5); margin-bottom: 20px; font-weight: 300; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; color: var(--text4); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--bg2);
  border: 0.5px solid var(--border2);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text2);
  font-family: var(--font-main);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }

/* =============================================
   GENRE PILLS
   ============================================= */
.genre-section { background: var(--bg); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.genre-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.genre-pill { background: var(--bg2); border: 0.5px solid var(--border); border-radius: 99px; padding: 7px 16px; font-size: 13px; color: var(--text4); font-weight: 300; cursor: pointer; transition: all var(--transition); text-decoration: none; display: inline-block; }
.genre-pill:hover, .genre-pill.active { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); color: var(--accent-lt); }

/* =============================================
   ELEMENTOR OVERRIDES
   ============================================= */
.elementor-section { background: transparent !important; }
.elementor-widget-text-editor p { color: var(--text3); }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 28px; }
.mt-lg { margin-top: 48px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 28px; }
.divider { height: 0.5px; background: var(--border); margin: 40px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
