/* ═══════════════════════════════════════
   LCGUIDES — Hook styles (footer + product)
   Lightweight — loaded on all pages
   ═══════════════════════════════════════ */

/* ─── FOOTER COLUMN ─── */
.lcg-footer-col {
  min-width: 160px;
}
.lcg-footer-title {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 16px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #fff !important;
  margin-bottom: 16px !important;
}
.lcg-footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lcg-footer-links li {
  list-style: none !important;
}
.lcg-footer-links a {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.lcg-footer-links a:hover {
  color: #C5A55A !important;
}

/* ─── PRODUCT PAGE GUIDES ─── */
.lcg-product-guides {
  margin-top: 20px;
  padding: 16px 0 0;
  border-top: 1px solid #f0f0f0;
}
.lcg-product-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.lcg-product-title svg {
  width: 16px;
  height: 16px;
  stroke: #C5A55A;
}
.lcg-product-title span {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 14px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #0a0a0a !important;
}
.lcg-product-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lcg-product-links li {
  list-style: none !important;
}
.lcg-product-links a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px !important;
  background: #FAFAFA !important;
  border: 1px solid #f0f0f0 !important;
  text-decoration: none !important;
  transition: border-color 0.2s, background 0.2s;
}
.lcg-product-links a:hover {
  border-color: #C5A55A !important;
  background: #fff !important;
}
.lcg-product-links .lcg-link-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
}
.lcg-product-links svg {
  width: 14px;
  height: 14px;
  stroke: #999;
  transition: stroke 0.2s, transform 0.2s;
}
.lcg-product-links a:hover svg {
  stroke: #C5A55A;
  transform: translateX(3px);
}
