@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,600;0,700&family=Lato:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/*
Theme Name: VinylVault Pro Theme
Theme URI: https://vinylvault.ai
Author: VinylVault Studio
Author URI: https://vinylvault.ai
Description: A high-conversion WordPress Theme optimized for vinyl record guides, music reviews & Amazon affiliate monetization.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: music, blog, affiliate, vinyl, e-commerce, custom-colors, responsive-layout, dark-mode, grid-layout
Text Domain: vinylvault-pro
*/

:root {
  --vv-bg: #030712;
  --vv-card: #111827;
  --vv-sidebar: #0b0f19;
  --vv-text: #f9fafb;
  --vv-muted: #9ca3af;
  --vv-border: #1f2937;
  --vv-accent: #f59e0b;
  --vv-accent-hover: #f59e0bdd;
  --vv-font-heading: 'Lora', sans-serif;
  --vv-font-body: 'Lato', system-ui, -apple-system, sans-serif;
}

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

body {
  background-color: var(--vv-bg);
  color: var(--vv-text);
  font-family: var(--vv-font-body);
  line-height: 1.6;
  font-size: 14.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vv-font-heading);
  color: var(--vv-text);
  line-height: 1.25;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

h1 { font-size: 1.85rem; font-weight: 700; }
h2 { font-size: 1.35rem; font-weight: 700; margin-top: 1.5rem; }
h3 { font-size: 1.1rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; }

a {
  color: var(--vv-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

/* Layout Container */
.vv-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header & Navigation */
.vv-header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vv-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.85rem 0;
}

.vv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vv-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--vv-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--vv-text);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.vv-logo-disc {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--vv-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.vv-nav-list {
  display: flex;
  list-style: none;
  gap: 1.25rem;
}

.vv-nav-list a {
  color: var(--vv-text);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vv-nav-list a:hover {
  color: var(--vv-accent);
  text-decoration: none;
}

/* Main Layout Grid */
.vv-main-layout {
  display: block;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
  max-width: 850px;
  margin: 0 auto;
}

.vv-content {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

/* Collapsed Table of Contents Box */
.vv-toc-box {
  background: var(--vv-card);
  border: 1px solid var(--vv-border);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 2rem;
}

.vv-toc-box summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--vv-text);
  outline: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.vv-toc-box summary::-webkit-details-marker,
.vv-toc-box summary::marker {
  display: none !important;
}

@media (max-width: 900px) {
  .vv-main-layout {
    grid-template-columns: 1fr;
  }
}

/* Single Article Header */
.vv-article-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--vv-border);
}

.vv-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--vv-accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-bottom: 0.75rem;
}

.vv-article-title {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.vv-article-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--vv-muted);
  font-size: 0.825rem;
}

/* FTC Disclaimer Banner */
.vv-ftc-banner {
  background: rgba(30, 41, 59, 0.6);
  border-left: 3px solid var(--vv-accent);
  border-radius: 0.5rem;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.75rem;
  font-size: 0.825rem;
  color: var(--vv-muted);
}

/* Key Takeaways Box */
.vv-takeaways-box {
  background: var(--vv-card);
  border: 1px solid var(--vv-border);
  border-radius: 0.85rem;
  padding: 1.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px -5px rgba(0,0,0,0.15);
}

.vv-takeaways-title {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--vv-accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vv-takeaways-list {
  list-style: none;
}

.vv-takeaways-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--vv-text);
  font-size: 0.9rem;
}

.vv-takeaways-list li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  top: 0;
}

/* Vinyl Album Review Cards - Side by Side Layout */
.vv-record-card, .vv-vinyl-card {
  background: var(--vv-card);
  border: 1px solid var(--vv-border);
  border-radius: 1rem;
  padding: 1.35rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.2);
}

.vv-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-start;
}

.vv-album-art-wrap, .vv-album-cover-col {
  flex: 0 0 210px;
  max-width: 100%;
}

.vv-album-info-col {
  flex: 1;
  min-width: 240px;
}

@media (max-width: 600px) {
  .vv-card-grid {
    flex-direction: column;
  }
  .vv-album-art-wrap, .vv-album-cover-col {
    flex: 0 0 100%;
    width: 100%;
  }
}

.vv-album-art-wrap {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 0.65rem;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--vv-border);
}

.vv-album-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vv-rank-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--vv-accent);
  color: #0f172a;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.vv-album-header {
  margin-bottom: 0.75rem;
}

.vv-album-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.vv-album-artist {
  font-size: 0.95rem;
  color: var(--vv-accent);
  font-weight: 700;
}

.vv-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.6rem 0;
}

.vv-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--vv-border);
  padding: 0.15rem 0.5rem;
  border-radius: 0.35rem;
  font-size: 0.725rem;
  color: var(--vv-muted);
}

/* Amazon Buy Button CTA */
.vv-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--vv-accent), #f59e0b);
  color: #0f172a !important;
  font-weight: 800;
  font-size: 0.825rem;
  padding: 0.65rem 1.25rem;
  border-radius: 0.65rem;
  margin-top: 1rem;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.25);
  transition: all 0.2s ease;
  text-decoration: none !important;
  cursor: pointer;
}

.vv-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
}

/* Post Tag Chips */
.vv-post-tags {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--vv-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.vv-tag-chip {
  background: var(--vv-card);
  color: var(--vv-text);
  border: 1px solid var(--vv-border);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.725rem;
  font-weight: 600;
}

/* Sidebar Widgets */
.vv-widget {
  background: var(--vv-card);
  border: 1px solid var(--vv-border);
  border-radius: 0.85rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.vv-widget-title {
  font-size: 1.0rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--vv-accent);
}

/* Sticky Bottom Mobile Bar */
.vv-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  border-top: 1px solid var(--vv-border);
  padding: 0.6rem 0.85rem;
  z-index: 99;
  box-shadow: 0 -8px 20px rgba(0,0,0,0.2);
}

@media (max-width: 640px) {
  
}

/* Footer */
.vv-footer {
  background: #080d1a;
  color: #94a3b8;
  border-top: 1px solid var(--vv-border);
  padding: 2.5rem 0;
  margin-top: 3.5rem;
  font-size: 0.825rem;
}

/* Gutenberg Block Styling */
.entry-content, .vv-entry-content, .wp-block-post-content {
  color: var(--vv-text);
  font-family: var(--vv-font-body);
  line-height: 1.65;
  font-size: 14.5px;
}

.wp-block-image {
  margin: 1.5rem 0;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.65rem;
  box-shadow: 0 8px 20px -5px rgba(0,0,0,0.3);
  display: block;
}

.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.wp-block-button__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--vv-accent) !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  font-size: 0.825rem !important;
  padding: 0.65rem 1.35rem !important;
  border-radius: 0.65rem !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.25) !important;
  border: none !important;
}

.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4) !important;
  opacity: 0.95;
}

.wp-block-group {
  margin-bottom: 1.75rem;
  border-radius: 0.65rem;
}

.wp-block-quote, blockquote {
  border-left: 3px solid var(--vv-accent) !important;
  padding: 0.85rem 1.1rem !important;
  margin: 1.5rem 0 !important;
  background: rgba(30, 41, 59, 0.5) !important;
  border-radius: 0 0.4rem 0.4rem 0 !important;
  font-style: italic;
  color: var(--vv-text);
  font-size: 0.95rem;
}

.wp-block-separator, hr {
  border: none !important;
  border-top: 1px solid var(--vv-border) !important;
  margin: 2rem 0 !important;
}

audio {
  border-radius: 0.4rem;
  margin-top: 0.25rem;
}
