/* GuidedOut Theme — Main Stylesheet */

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

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #111827;
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── ICON FONT ── */
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css');

/* ── WRAPPER ── */
.go-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #111827;
  position: fixed;
  top: 0;
  left: 0;
}

/* ── SIDEBAR ── */
.go-sidebar {
  width: 200px;
  min-width: 200px;
  background: #111827;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
  height: 100vh;
  overflow: hidden;
}
.go-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #c9973a;
  padding: 0 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.go-logo-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c9973a;
  flex-shrink: 0;
}
.go-nav-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
  padding: 0 20px 7px;
}
.go-nav-links {
  list-style: none;
  padding: 0 10px;
  margin: 0 0 16px;
}
.go-nav-links li { margin-bottom: 2px; }
.go-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .15s;
}
.go-nav-link i { font-size: 13px; width: 14px; text-align: center; }
.go-nav-link:hover { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.8); }
.go-nav-link.active {
  background: rgba(201,151,58,0.12);
  color: #c9973a;
  font-weight: 500;
  border-color: rgba(201,151,58,0.25);
}
.go-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 4px 20px 16px;
}
.go-sidebar-bottom {
  margin-top: auto;
  padding: 12px 10px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.go-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201,151,58,0.12);
  border: 1px solid rgba(201,151,58,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #c9973a; font-weight: 500;
  flex-shrink: 0;
}
.go-profile-name { font-size: 11px; color: rgba(255,255,255,0.5); }
.go-profile-sub  { font-size: 10px; color: rgba(255,255,255,0.22); }

/* ── MAIN ── */
.go-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f7f5f0;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
  margin: 10px 0;
  min-width: 0;
}
.go-topbar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 16px 0 0 0;
}
.go-back {
  width: 28px; height: 28px;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,0.07);
  background: #f7f5f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #4b5563;
  flex-shrink: 0; cursor: pointer;
  transition: background .15s;
}
.go-back:hover { background: #f0ede8; }
.go-breadcrumb {
  font-size: 11px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
}
.go-breadcrumb span { color: #4b5563; font-weight: 500; }
.go-search {
  flex: 1;
  max-width: 280px;
  margin-left: 6px;
  position: relative;
}
.go-search i {
  position: absolute;
  left: 9px; top: 50%;
  transform: translateY(-50%);
  font-size: 13px; color: #9ca3af;
}
.go-search input {
  width: 100%; height: 30px;
  background: #f7f5f0;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 5px;
  padding: 0 10px 0 28px;
  font-size: 11px; color: #111827;
  outline: none;
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: border-color .15s;
}
.go-search input:focus { border-color: #c9973a; background: #fff; }
.go-tb-actions { margin-left: auto; display: flex; gap: 6px; }
.go-tb-btn {
  height: 28px; padding: 0 12px;
  border-radius: 5px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px; font-weight: 500;
  cursor: pointer; border: none;
  display: flex; align-items: center; gap: 4px;
  text-decoration: none;
  white-space: nowrap;
}
.go-tb-ghost { background: transparent; color: #4b5563; border: 1px solid rgba(0,0,0,0.07); }
.go-tb-ghost:hover { background: #f0ede8; }
.go-tb-gold { background: #c9973a; color: #fff; }
.go-tb-gold:hover { background: #b8862e; }

/* ── SCROLL AREA ── */
.go-scroll { flex: 1; overflow-y: auto; padding: 22px; }
.go-scroll::-webkit-scrollbar { width: 4px; }
.go-scroll::-webkit-scrollbar-track { background: transparent; }
.go-scroll::-webkit-scrollbar-thumb { background: rgba(201,151,58,0.25); border-radius: 10px; }

/* ── DETAIL LAYOUT ── */
.go-detail {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: start;
}
.go-cover-col { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.go-book {
  width: 110px; height: 148px;
  border-radius: 3px 8px 8px 3px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 6px 6px 20px rgba(0,0,0,0.35);
  flex-shrink: 0;
  overflow: hidden;
}
.go-book-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 10px;
  border-radius: 3px 0 0 3px;
}
.go-book-text {
  font-size: 9px; font-weight: 600;
  text-align: center;
  padding: 0 16px;
  line-height: 1.4;
  position: relative; z-index: 1;
  font-family: 'Playfair Display', Georgia, serif;
}
.go-meta-grid {
  width: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.go-meta-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 6px;
  padding: 7px 8px;
}
.go-meta-label { font-size: 9px; color: #9ca3af; margin-bottom: 2px; }
.go-meta-val   { font-size: 10px; color: #111827; font-weight: 500; }
.go-cover-actions { width: 110px; display: flex; flex-direction: column; gap: 6px; }
.go-ca-btn {
  width: 100%; height: 32px;
  border-radius: 6px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px; font-weight: 500;
  cursor: pointer; border: none;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  text-decoration: none;
  transition: all .15s;
}
.go-ca-gold  { background: #c9973a; color: #fff; }
.go-ca-gold:hover { background: #b8862e; }
.go-ca-navy  { background: #1a2340; color: #c9973a; }
.go-ca-navy:hover { background: #243060; }
.go-ca-ghost { background: transparent; color: #4b5563; border: 1px solid rgba(0,0,0,0.07); }
.go-ca-ghost:hover { background: #f0ede8; }

/* ── INFO COLUMN ── */
.go-info-col { min-width: 0; }
.go-detail-cat {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 500;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 10px;
  background: #faeeda; color: #854f0b;
  text-transform: uppercase; letter-spacing: .04em;
}
.go-detail-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 700;
  color: #111827; line-height: 1.2;
  margin-bottom: 4px;
}
.go-detail-sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 12px; font-style: italic;
  color: #4b5563; margin-bottom: 12px; line-height: 1.5;
}
.go-rating-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.go-stars      { color: #c9973a; font-size: 13px; letter-spacing: 1px; }
.go-rating-num { font-size: 12px; font-weight: 500; color: #111827; }
.go-rating-count { font-size: 11px; color: #9ca3af; }
.go-badge {
  font-size: 9px; font-weight: 500;
  padding: 2px 8px; border-radius: 20px;
  background: #faeeda; color: #854f0b;
}
.go-badge-green { background: #e1f5ee; color: #0f6e56; }
.go-desc {
  font-size: 12px; color: #4b5563;
  line-height: 1.7; font-weight: 300;
  margin-bottom: 16px; max-width: 420px;
}
.go-desc strong { color: #111827; font-weight: 500; }
.go-price-block {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
}
.go-price-orig {
  font-size: 11px; color: #9ca3af;
  text-decoration: line-through; margin-bottom: 1px;
}
.go-price-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px; font-weight: 700;
  color: #c9973a; line-height: 1;
}
.go-price-note { font-size: 10px; color: #9ca3af; font-weight: 300; margin-top: 2px; }
.go-price-btns { display: flex; gap: 7px; }
.go-pb {
  height: 34px; padding: 0 16px;
  border-radius: 6px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px; font-weight: 500;
  cursor: pointer; border: none;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap; transition: all .15s;
}
.go-pb-cart { background: #1a2340; color: #c9973a; }
.go-pb-cart:hover { background: #243060; }
.go-pb-buy  { background: #c9973a; color: #fff; }
.go-pb-buy:hover  { background: #b8862e; }
.go-what-title {
  font-size: 11px; font-weight: 500;
  color: #111827; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .06em;
}
.go-what-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5px; margin-bottom: 16px;
}
.go-what-item {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 11px; color: #4b5563; line-height: 1.4;
}
.go-what-check {
  width: 15px; height: 15px; border-radius: 50%;
  background: rgba(201,151,58,0.12);
  border: 1px solid rgba(201,151,58,0.25);
  color: #c9973a; font-size: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.go-chapter {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.go-chapter:first-of-type { border-top: 1px solid rgba(0,0,0,0.06); }
.go-ch-num {
  width: 20px; height: 20px; border-radius: 50%;
  background: #1a2340; color: #c9973a;
  font-size: 9px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.go-ch-title { font-size: 11px; font-weight: 500; color: #111827; margin-bottom: 2px; }
.go-ch-desc  { font-size: 10px; color: #9ca3af; line-height: 1.4; }
.go-guarantee {
  background: #1a2340; border-radius: 6px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px;
}
.go-gs-icon { font-size: 18px; color: #c9973a; flex-shrink: 0; }
.go-gs-title { font-size: 11px; font-weight: 500; color: #fff; margin-bottom: 1px; }
.go-gs-sub   { font-size: 10px; color: rgba(255,255,255,0.4); line-height: 1.4; }
.go-gs-badges { margin-left: auto; display: flex; gap: 5px; flex-shrink: 0; }
.go-gs-badge {
  font-size: 9px; font-weight: 500; padding: 3px 8px;
  border-radius: 20px;
  background: rgba(201,151,58,0.12);
  border: 1px solid rgba(201,151,58,0.2);
  color: #c9973a; white-space: nowrap;
}

/* ── RIGHT PANEL ── */
.go-right {
  width: 240px; min-width: 240px;
  background: #fff;
  display: flex; flex-direction: column;
  overflow: hidden;
  margin: 10px 10px 10px 0;
  border-radius: 12px;
  border-left: 1px solid rgba(0,0,0,0.07);
  flex-shrink: 0;
}
.go-rp-top {
  padding: 16px 14px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  flex-shrink: 0;
}
.go-rp-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px; font-weight: 500;
  color: #111827; margin: 0;
}
.go-rp-scroll { flex: 1; overflow-y: auto; padding: 10px 12px; }
.go-rp-scroll::-webkit-scrollbar { width: 3px; }
.go-rp-scroll::-webkit-scrollbar-thumb { background: rgba(201,151,58,0.2); border-radius: 10px; }
.go-rec {
  display: flex; gap: 10px;
  padding: 10px; border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  margin-bottom: 2px;
  text-decoration: none;
  transition: all .15s;
}
.go-rec:hover { background: #f7f5f0; border-color: rgba(0,0,0,0.07); }
.go-rec-active { background: #f7f5f0; border-color: rgba(201,151,58,0.25); }
.go-rec-book {
  width: 42px; height: 56px;
  border-radius: 2px 4px 4px 2px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.18);
  overflow: hidden;
}
.go-rec-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px; border-radius: 2px 0 0 2px;
}
.go-rec-text {
  font-size: 5px; font-weight: 500;
  text-align: center; padding: 0 6px;
  line-height: 1.3; position: relative; z-index: 1;
}
.go-rec-info  { flex: 1; min-width: 0; }
.go-rec-title { font-size: 11px; font-weight: 500; color: #111827; margin-bottom: 2px; line-height: 1.3; }
.go-rec-cat   { font-size: 9px; color: #9ca3af; margin-bottom: 3px; }
.go-rec-stars { color: #c9973a; font-size: 9px; letter-spacing: .3px; }
.go-rec-price { font-size: 12px; font-weight: 500; color: #c9973a; margin-top: 2px; }
.go-rec-divider { height: 1px; background: rgba(0,0,0,0.06); margin: 3px 0; }
.go-rp-guarantee {
  background: #1a2340; border-radius: 8px;
  padding: 11px; margin: 0 12px 12px;
  text-align: center; flex-shrink: 0;
}
.go-rg-icon  { font-size: 18px; color: #c9973a; margin-bottom: 4px; display: block; }
.go-rg-title { font-size: 11px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.go-rg-sub   { font-size: 9px; color: rgba(255,255,255,0.38); line-height: 1.4; }
.go-rp-action {
  padding: 10px 12px;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex; flex-direction: column; gap: 6px;
  flex-shrink: 0;
}
.go-rp-btn {
  width: 100%; padding: 9px;
  border-radius: 6px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px; font-weight: 500;
  cursor: pointer; border: none;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: all .15s;
}
.go-rp-navy  { background: #1a2340; color: #c9973a; }
.go-rp-navy:hover { background: #243060; }
.go-rp-ghost { background: transparent; color: #4b5563; border: 1px solid rgba(0,0,0,0.07); }
.go-rp-ghost:hover { background: #f7f5f0; }

/* ── WP PRICE OVERRIDE ── */
.woocommerce-Price-amount { font-family: inherit; }
.go-price-main .woocommerce-Price-currencySymbol { font-size: 14px; vertical-align: super; }

/* ── UTILITY ── */
.guidedout-body { overflow: hidden !important; margin: 0 !important; padding: 0 !important; }
