/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6; 
    color: #2d3748;
    background: #fff;
}

/* Two-Column Header */
.site-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); 
    color: white; 
    padding: 1.5rem; 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    gap: 2rem;
    min-height: 150px;
    font-family: 'Montserrat', sans-serif;
}

.logo-column {
    flex: 0 0 auto;
    text-align: center;
}

.logo-column video {
    height: 80px; 
    width: 80px; 
    border-radius: 8px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin-bottom: 0.5rem;
}

.site-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    font-weight: 500;
}

.content-column {
    flex: 1;
    text-align: left;
}

.page-title {
    margin-bottom: 0.5rem; 
    font-size: 2rem; 
    line-height: 1.2;
    font-weight: 700;
}

.page-subtitle {
    margin: 0; 
    font-size: 1.1rem; 
    opacity: 0.9;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .content-column {
        text-align: center;
    }
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s;
}
.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin: 0.5rem 0;
}

/* Gumroad Embeds */
.gumroad-embed-container {
    margin: 2rem 0;
    min-height: 400px;
}

/* Footer Disclosure */
.footer-disclosure {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.footer-disclosure sup {
    font-weight: bold;
    color: #667eea;
}
/* Social Sharing Styles */
.share-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.share-title {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #2d3748;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.twitter { background: #1DA1F2; color: white; }
.linkedin { background: #0077B5; color: white; }
.facebook { background: #4267B2; color: white; }
.pinterest { background: #BD081C; color: white; }
.copy-link { background: #667eea; color: white; }

/* Related Products Section */
.related-products {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
}

.related-products h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #2d3748;
}
/* Engagement Section */
.engagement-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    border-left: 4px solid #667eea;
}
/* Articles Grid Styles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

/* Product Card Styles (if not already there) */
.product-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #007cf0 0%, #00dfd8 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,124,240,0.3);
}