/* Blog Post Styles */

:root {
    --coffee-dark: #2c1810;
    --coffee-medium: #6f4e37;
    --coffee-light: #a67c52;
    --cream: #f9f5f0;
    --cream-dark: #f0e8dd;
    --accent-gold: #d4a574;
    --accent-warm: #e8b298;
    --text-primary: #1a1410;
    --text-secondary: #5a4a3a;
    --shadow: rgba(44, 24, 16, 0.1);
    --shadow-strong: rgba(44, 24, 16, 0.2);
    --success-green: #2d7a3e;
    --alert-red: #c54d4d;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-primary);
    line-height: 1.7;
}

/* Header */
.site-header {
    background: var(--coffee-dark);
    color: var(--cream);
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px var(--shadow);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
    text-decoration: none;
}

.site-header nav {
    display: flex;
    gap: 2rem;
}

.site-header nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.site-header nav a:hover {
    color: var(--accent-gold);
}

/* Blog Post Container */
.blog-post {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* Post Header */
.post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--cream-dark);
}

.post-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--coffee-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Post Content */
.post-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.intro-section {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.intro-section p {
    margin-bottom: 1.2rem;
}

/* Section Headings */
.post-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--coffee-dark);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-gold);
}

.post-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--coffee-medium);
    margin: 2rem 0 1rem;
}

.post-content h4 {
    font-size: 1.2rem;
    color: var(--coffee-medium);
    margin: 1.5rem 0 0.75rem;
}

.post-content p {
    margin-bottom: 1.2rem;
}

.post-content ul,
.post-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.post-content li {
    margin-bottom: 0.75rem;
}

.post-content strong {
    color: var(--coffee-dark);
    font-weight: 600;
}

/* Product Section */
.product-section {
    margin: 3rem 0;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.product-item {
    background: var(--cream);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.product-item.featured {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.2);
}

.product-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coffee-medium);
    min-width: 50px;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.product-details {
    display: flex;
    gap: 2rem;
    margin: 0.75rem 0 1rem;
    flex-wrap: wrap;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coffee-medium);
}

.rating {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--coffee-medium) 0%, var(--coffee-dark) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(111, 78, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 78, 55, 0.4);
}

.cta-button.large {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.large-cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--coffee-medium) 0%, var(--coffee-dark) 100%);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(111, 78, 55, 0.3);
}

.large-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(111, 78, 55, 0.4);
}

/* Guide Section */
.guide-section {
    margin: 3rem 0;
}

.guide-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.guide-item {
    background: var(--cream);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 8px;
}

.guide-item h3 {
    margin-top: 0;
    color: var(--coffee-dark);
}

/* Featured Pick Section */
.featured-pick {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 3px solid var(--accent-gold);
}

.pick-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

.pick-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.pick-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coffee-medium);
}

.rating-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
    text-align: center;
}

.stars {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pick-content {
    margin-top: 2rem;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros,
.cons {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
}

.pros h4 {
    color: var(--success-green);
    margin-top: 0;
}

.cons h4 {
    color: var(--alert-red);
    margin-top: 0;
}

.pros ul,
.cons ul {
    margin-left: 0;
    list-style: none;
}

.pros li::before {
    content: "✓ ";
    color: var(--success-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.cons li::before {
    content: "✗ ";
    color: var(--alert-red);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Verdict Box */
.verdict-box {
    background: var(--cream);
    border-left: 4px solid var(--coffee-medium);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.verdict-box h4 {
    margin-top: 0;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: white;
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--coffee-dark);
    font-size: 1.1rem;
    user-select: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--coffee-medium);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-primary);
}

.faq-answer ul {
    margin-top: 0.5rem;
}

/* Conclusion */
.conclusion {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--cream);
    border-radius: 16px;
}

.final-cta {
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.final-cta h3 {
    margin-top: 0;
    color: var(--coffee-dark);
}

/* Related Posts */
.related-posts {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--cream);
    border-radius: 12px;
}

.related-posts h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
}

.related-posts ul {
    list-style: none;
    margin: 0;
}

.related-posts li {
    margin-bottom: 0.75rem;
}

.related-posts a {
    color: var(--coffee-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.related-posts a:hover {
    color: var(--coffee-dark);
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: var(--coffee-dark);
    color: var(--cream);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-section ul {
    list-style: none;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 245, 240, 0.2);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .post-content {
        padding: 2rem 1.5rem;
    }

    .pick-hero {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .product-item {
        flex-direction: column;
    }

    .product-rank {
        text-align: center;
    }

    .product-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .site-header nav {
        gap: 1rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-post {
        padding: 0 1rem;
    }

    .post-header h1 {
        font-size: 1.8rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }
}