/*
Theme Name: Omaha Steaks Deals
Theme URI: https://www.shopomahasteaks.com/
Author: Omaha Steak Deals
Author URI: https://www.shopomahasteaks.com/
Description: Custom theme converted from HTML template for Omaha Steaks Deals.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: shopomahasteaks
*/

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #2c3e50;
            background-color: #f8f9fa;
            font-size: 17px;
        }
		
		h3 {
			color: #DC143C;
			margin: 1.5rem 0 0.8rem;
			font-size: 1.5rem;
		}
	
		ul, ol {
			margin-left: 2rem;
			margin-bottom: 1rem;
		}
        
        /* Top Bar */
        .top-bar {
            background: #1a1a1a;
            color: white;
            padding: 12px 0;
            text-align: center;
            font-size: 15px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.9; }
        }
        
        .top-bar a {
            color: #ffeb3b;
            text-decoration: none;
            font-weight: bold;
        }
        
        .top-bar a:hover {
            text-decoration: underline;
        }
        
        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            font-size: 26px;
            font-weight: bold;
            color: #8b0000;
            text-decoration: none;
        }
        
        .mobile-menu-toggle {
            display: none;
            background: #8b0000;
            color: white;
            border: none;
            padding: 10px 15px;
            font-size: 20px;
            cursor: pointer;
            border-radius: 5px;
        }
        
        nav {
            display: flex;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #8b0000;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #8b0000, #a52a2a);
            color: white;
            padding: 70px 20px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 52px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

		.hero p.last-updated {
			font-size: 15px;
			opacity: 0.85;
			margin-top: 15px;
		}
        
        .hero p {
            font-size: 22px;
            max-width: 800px;
            margin: 0 auto 15px;
            opacity: 0.95;
        }

        
        .hero-cta {
            display: inline-block;
            background: #ffeb3b;
            color: #8b0000;
            padding: 16px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 19px;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 10px;
        }
        
        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Breadcrumb */
        .breadcrumb {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
        
        .breadcrumb ul {
            list-style: none;
            display: flex;
            gap: 10px;
            font-size: 15px;
        }
        
        .breadcrumb li:after {
            content: '›';
            margin-left: 10px;
            color: #999;
        }
        
        .breadcrumb li:last-child:after {
            display: none;
        }
        
        .breadcrumb a {
            color: #8b0000;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .intro-section {
            background: white;
            padding: 45px;
            border-radius: 10px;
            margin-bottom: 50px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        
        .intro-section h2 {
            color: #8b0000;
            margin-bottom: 25px;
            font-size: 36px;
        }
        
        .intro-section p {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 18px;
        }
		
		.savings-tips {
			background: #d4edda;
			border-left: 4px solid #28a745;
			padding: 1.8rem;
			margin: 2rem 0;
			border-radius: 5px;
		}
        
        .savings-tips h3 {
            font-size: 1.4rem;
            margin-top: 0;
        }

        .container-full {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-full {
            background: white;
            padding: 3.5rem 0;
            margin-bottom: 2rem;
        }		
		
        .section-title {
            font-size: 2.2rem;
            color: #8B0000;
            margin-bottom: 1.8rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #DC143C;
        }
        
        .section-full p {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .guide-content-full {
            background: #f9f9f9;
            padding: 2.2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }

        
        /* Deal Sections */
        .deal-section {
            margin-bottom: 60px;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .section-header h2 {
            color: #2c3e50;
            font-size: 30px;
            border-left: 4px solid #8b0000;
            padding-left: 15px;
        }
        
        .view-all-btn {
            background: #8b0000;
            color: white;
            padding: 12px 28px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            font-size: 16px;
            transition: background 0.3s;
        }
        
        .view-all-btn:hover {
            background: #a52a2a;
        }
        
        .section-description {
            background: white;
            padding: 22px;
            border-radius: 8px;
            margin-bottom: 30px;
            border-left: 3px solid #8b0000;
        }
        
        .section-description p {
            font-size: 17px;
            line-height: 1.8;
        }
		
        .info-box {
			background: #fff3cd;
			border-left: 4px solid #ffc107;
			padding: 1.8rem;
			margin: 2rem 0;
			border-radius: 5px;
		}
        
        .info-box h3 {
            font-size: 1.4rem;
            margin-top: 0;
        }
        
        /* Deal Cards */
        .deals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .deal-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }
        
        .deal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        }
        
        .deal-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #ff4444;
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 14px;
            z-index: 10;
        }
        
        .deal-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 15px;
        }
        
        .deal-content {
            padding: 22px;
        }
        
        .deal-title {
            font-size: 21px;
            color: #2c3e50;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .deal-description {
            color: #666;
            margin-bottom: 16px;
            font-size: 15px;
            line-height: 1.6;
        }
        
        .price-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        
        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 17px;
        }
        
        .sale-price {
            color: #8b0000;
            font-size: 26px;
            font-weight: bold;
        }
        
        .savings {
            background: #4caf50;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 13px;
            font-weight: bold;
        }
        
        .deal-cta {
            display: block;
            background: #8b0000;
            color: white;
            text-align: center;
            padding: 13px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            font-size: 16px;
            transition: background 0.3s;
        }
        
        .deal-cta:hover {
            background: #a52a2a;
        }
        
        /* Guide Section */
        .guide-section {
            background: white;
            padding: 55px;
            border-radius: 10px;
            margin-bottom: 50px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        
        .guide-section h2 {
            color: #8b0000;
            margin-bottom: 30px;
            font-size: 36px;
            text-align: center;
        }
        
        .guide-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .guide-item {
            text-align: center;
            padding: 20px;
        }
        
        .guide-icon {
            width: 65px;
            height: 65px;
            background: #8b0000;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 26px;
        }
        
        .guide-item h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .guide-item p {
            color: #666;
            font-size: 15px;
        }
        
        /* FAQ Section */
        .faq-section {
            background: #f8f9fa;
            padding: 55px 20px;
            border-radius: 10px;
            margin-bottom: 50px;
        }
        
        .faq-section h2 {
            color: #8b0000;
            text-align: center;
            margin-bottom: 40px;
            font-size: 36px;
        }
        
        .faq-item {
            background: white;
            padding: 22px;
            border-radius: 8px;
            margin-bottom: 16px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            font-weight: 600;
            font-size: 17px;
            color: #2c3e50;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-right: 30px;
        }
        
        .faq-question:after {
            content: '+';
            font-size: 26px;
            color: #8b0000;
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-question:after {
            content: '−';
        }
        
        .faq-answer {
            margin-top: 16px;
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        /* Disclaimer Section */

		        .disclaimer-box {
            background: #ffe5e5;
            border-left: 4px solid #dc3545;
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 5px;
        }
        
        .disclaimer-box h3 {
            font-size: 1.3rem;
            margin-top: 0;
            color: #dc3545;
        }

        .mission-box {
            background: #d4edda;
            border-left: 4px solid #28a745;
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 5px;
        }
        
        .mission-box h3 {
            font-size: 1.3rem;
            margin-top: 0;
        }

        .warning-box {
            background: #ffe5e5;
            border-left: 4px solid #dc3545;
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 5px;
        }
        
        .warning-box h3 {
            font-size: 1.3rem;
            margin-top: 0;
            color: #dc3545;
        }

        .highlight-box {
            background: #e3f2fd;
            border-left: 4px solid #2196f3;
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 5px;
        }
        
        .highlight-box h3 {
            font-size: 1.3rem;
            margin-top: 0;
        }
		
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 2rem 0;
        }
        
        .value-card {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            border-top: 4px solid #8b0000;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .value-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        
        .value-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
		

        .disclaimer-section {
            background: #fff3cd;
            border: 2px solid #ffc107;
            border-radius: 10px;
            padding: 30px;
            margin: 50px auto;
            max-width: 1200px;
        }
        
        .disclaimer-section h3 {
            color: #856404;
            margin-bottom: 15px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .disclaimer-section p {
            color: #856404;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 12px;
        }
        
        .disclaimer-section p:last-child {
            margin-bottom: 0;
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 45px 20px 20px;
            margin-top: 0px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            margin-bottom: 18px;
            color: #ffeb3b;
            font-size: 1.3rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section a {
            color: #ecf0f1;
            text-decoration: none;
            line-height: 2.2;
            font-size: 15px;
        }
        
        .footer-section a:hover {
            color: #ffeb3b;
        }
        
        .footer-section p {
            font-size: 15px;
            line-height: 1.7;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 15px;
        }
        
        .footer-bottom p {
            margin-bottom: 8px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 42px;
            }
            
            .hero p {
                font-size: 19px;
            }
            
            .section-header h2 {
                font-size: 26px;
            }
            
            .intro-section h2,
            .guide-section h2,
            .faq-section h2,
            .section-title {
                font-size: 30px;
            }
        }
        
        @media (max-width: 768px) {
            body {
                font-size: 16px;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            nav {
                display: none;
                width: 100%;
                order: 3;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                gap: 0;
                padding: 15px 0;
            }
            
            nav li {
                width: 100%;
                border-bottom: 1px solid #eee;
            }
            
            nav a {
                display: block;
                padding: 12px 0;
                font-size: 16px;
            }
            
            .logo {
                font-size: 22px;
            }
            
            .hero {
                padding: 50px 20px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 17px;
            }
            
            .hero-cta {
                padding: 14px 35px;
                font-size: 17px;
            }
            
            .guide-section, .intro-section {
                padding: 30px 25px;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .section-header h2 {
                font-size: 24px;
            }
            
            .intro-section h2,
            .guide-section h2,
            .faq-section h2,
            .section-title {
                font-size: 26px;
            }
            
            .deals-grid {
                grid-template-columns: 1fr;
            }
            
            h3 {
                font-size: 1.3rem;
            }
            
            .disclaimer-section {
                padding: 25px 20px;
            }
            
            .disclaimer-section h3 {
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 480px) {
            .top-bar {
                font-size: 13px;
                padding: 10px 15px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .deal-badge {
                font-size: 12px;
                padding: 5px 12px;
            }
            
            .guide-content {
                grid-template-columns: 1fr;
            }
        }

/* Contact Page Specific Styles - Add to your style.css */

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b0000;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.submit-button {
    background: #8b0000;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 30px auto 0;
}

.submit-button:hover {
    background: #a52a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.button-loader {
    display: inline-block;
}

/* Success and Error Messages */
.success-message {
    background: #d4edda;
    border-left: 4px solid #28a745;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.success-message h3 {
    color: #28a745;
    margin-top: 0;
    font-size: 1.3rem;
}

.error-message {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.error-message h3 {
    color: #dc3545;
    margin-top: 0;
    font-size: 1.3rem;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 2rem 0;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #8b0000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    color: #8b0000;
    margin: 15px 0;
    font-size: 1.3rem;
}

.contact-info-card p {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.6;
}

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

.faq-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #8b0000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #8b0000;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-item p {
    margin: 0;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .submit-button {
        max-width: 100%;
        font-size: 16px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 20px 15px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .checkbox-label {
        font-size: 14px;
    }
}




/* ========================================
   BLOG PAGE STYLES - Add to end of style.css
   ======================================== */

/* Blog Categories Filter */
.blog-categories {
    background: white;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.category-btn {
    background: #f8f9fa;
    border: 2px solid #ddd;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    color: #2c3e50;
}

.category-btn:hover {
    background: #8b0000;
    color: white;
    border-color: #8b0000;
}

.category-btn.active {
    background: #8b0000;
    color: white;
    border-color: #8b0000;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.12);
    margin-bottom: 50px;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffeb3b;
    color: #8b0000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.featured-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.featured-text {
    padding: 45px;
}

.featured-text h2 {
    color: #2c3e50;
    font-size: 32px;
    margin: 15px 0 12px;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin: 15px 0 25px;
}

.read-more-btn {
    display: inline-block;
    background: #8b0000;
    color: white;
    padding: 14px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background: #a52a2a;
    transform: translateY(-2px);
}

/* Blog Posts Grid */
.blog-posts-section {
    margin: 50px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 15px;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.post-category.deals {
    background: #e8f5e9;
    color: #2e7d32;
}

.post-category.cooking {
    background: #fff3e0;
    color: #e65100;
}

.post-category.guides {
    background: #e3f2fd;
    color: #1565c0;
}

.post-category.reviews {
    background: #f3e5f5;
    color: #6a1b9a;
}

.blog-title {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.post-meta {
    color: #999;
    font-size: 13px;
    margin-bottom: 12px;
}

.blog-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    flex-grow: 1;
}

.read-more-link {
    color: #8b0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    align-self: flex-start;
}

.read-more-link:hover {
    color: #a52a2a;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 50px 0;
}

.page-btn {
    background: white;
    border: 2px solid #ddd;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    color: #2c3e50;
}

.page-btn:hover {
    background: #8b0000;
    color: white;
    border-color: #8b0000;
}

.page-btn.active {
    background: #8b0000;
    color: white;
    border-color: #8b0000;
}

.page-dots {
    color: #999;
    padding: 0 10px;
}

.next-btn {
    font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-content > p {
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    background: #ffeb3b;
    color: #8b0000;
    border: none;
    padding: 16px 35px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.newsletter-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.85;
}

/* Popular Topics */
.popular-topics-section {
    margin: 50px 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.topic-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 3px 15;
}







/* ========================================
   BLOG POST TEMPLATE STYLES
   Add to end of style.css
   ======================================== */

/* Blog Post Container - Two Column Layout */
.blog-post-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

/* Main Content Area */
.blog-post-content {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Post Header */
.post-header {
    margin-bottom: 40px;
}

.post-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.post-cat-link {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.post-cat-link.deals {
    background: #e8f5e9;
    color: #2e7d32;
}

.post-cat-link.guides {
    background: #e3f2fd;
    color: #1565c0;
}

.post-cat-link.cooking {
    background: #fff3e0;
    color: #e65100;
}

.post-cat-link.reviews {
    background: #f3e5f5;
    color: #6a1b9a;
}

.post-cat-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.post-title {
    font-size: 42px;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Post Meta Info */
.post-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.author-name a {
    color: #8b0000;
    text-decoration: none;
}

.author-name a:hover {
    text-decoration: underline;
}

.post-date {
    font-size: 14px;
    color: #999;
}

.post-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.post-stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Featured Image */
.post-featured-image {
    margin: 30px 0 40px;
    border-radius: 10px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-featured-image figcaption {
    background: #f8f9fa;
    padding: 12px 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Table of Contents */
.table-of-contents {
    background: #f8f9fa;
    border-left: 4px solid #8b0000;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 5px;
}

.table-of-contents h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #2c3e50;
}

.table-of-contents ul {
    list-style: none;
    margin-left: 0;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: #8b0000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.table-of-contents a:hover {
    color: #a52a2a;
    transform: translateX(5px);
}

/* Post Body Content */
.post-body {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
}

.post-body section {
    margin-bottom: 50px;
}

.post-body h2 {
    font-size: 32px;
    color: #8b0000;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #8b0000;
}

.post-body h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 30px 0 15px;
}

.post-body h4 {
    font-size: 20px;
    color: #2c3e50;
    margin: 25px 0 12px;
}

.post-body p {
    margin-bottom: 20px;
}

.lead-paragraph {
    font-size: 20px;
    font-weight: 500;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Styled Lists */
.styled-list {
    margin: 20px 0 20px 2rem;
}

.styled-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.styled-list strong {
    color: #8b0000;
}

/* Info Boxes */
.post-info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 5px;
}

.post-warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 5px;
}

.post-success-box {
    background: #d4edda;
    border-left: 4px solid #28a745;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 5px;
}

.post-highlight-box {
    background: #f8f9fa;
    border: 2px solid #8b0000;
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
}

.post-info-box h4,
.post-warning-box h4,
.post-success-box h4,
.post-highlight-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.post-info-box p,
.post-warning-box p,
.post-success-box p,
.post-highlight-box p {
    margin-bottom: 0;
    font-size: 16px;
}

/* Blockquote */
.post-blockquote {
    background: #f8f9fa;
    border-left: 5px solid #8b0000;
    padding: 25px 30px;
    margin: 30px 0;
    font-size: 19px;
    font-style: italic;
    color: #34495e;
    line-height: 1.7;
}

.post-blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    color: #8b0000;
}

/* Tables */
.post-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.post-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.post-table thead {
    background: #8b0000;
    color: white;
}

.post-table th,
.post-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.post-table th {
    font-weight: 600;
    font-size: 15px;
}

.post-table td {
    font-size: 15px;
}

.post-table tbody tr:hover {
    background: #f8f9fa;
}

.post-table tbody tr:last-child td {
    border-bottom: none;
}

/* Two Column List */
.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
}

.two-column-list .column {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.two-column-list h4 {
    margin-top: 0;
    color: #8b0000;
    font-size: 18px;
}

.two-column-list ul {
    margin-left: 1.5rem;
}

.two-column-list li {
    margin-bottom: 8px;
}

/* Video Wrapper */
.post-video-wrapper {
    margin: 30px 0;
}

.video-placeholder {
    background: #000;
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
}

/* Accordion */
.post-accordion {
    margin: 25px 0;
}

.accordion-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #e9ecef;
}

.accordion-header h4 {
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
}

.accordion-icon {
    font-size: 18px;
    color: #8b0000;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px 25px;
    max-height: 500px;
}

/* Comparison Box */
.comparison-box {
    background: #f8f9fa;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
    border: 2px solid #ddd;
}

.comparison-box h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: #2c3e50;
}

.comparison-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comparison-good,
.comparison-bad {
    padding: 20px;
    border-radius: 8px;
}

.comparison-good {
    background: #d4edda;
    border: 2px solid #28a745;
}

.comparison-bad {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.comparison-good h5,
.comparison-bad h5 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

.comparison-good ul,
.comparison-bad ul {
    margin-left: 1.5rem;
}

.comparison-good li,
.comparison-bad li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Code Box */
.post-code-box {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    overflow-x: auto;
}

.post-code-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffeb3b;
    font-size: 18px;
}

.post-code-box pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.post-code-box code {
    color: #ecf0f1;
}

/* Post Images */
.post-image {
    margin: 30px 0;
    text-align: center;
}

.post-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.post-image figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* CTA Box */
.post-cta-box {
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    color: white;
    padding: 35px;
    text-align: center;
    border-radius: 10px;
    margin: 40px 0;
}

.post-cta-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 26px;
    color: white;
}

.post-cta-box p {
    margin-bottom: 25px;
    font-size: 18px;
}

.coupon-code {
    background: #ffeb3b;
    color: #8b0000;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    margin: 0 5px;
}

.cta-button {
    display: inline-block;
    background: #ffeb3b;
    color: #8b0000;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.tag-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.post-tag {
    background: #f8f9fa;
    color: #666;
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.post-tag:hover {
    background: #8b0000;
    color: white;
}

/* Share Buttons */
.post-share {
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 30px 0;
}

.post-share h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #2c3e50;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.pinterest {
    background: #e60023;
    color: white;
}

.share-btn.email {
    background: #34495e;
    color: white;
}

.share-btn.print {
    background: #95a5a6;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Author Bio */
.author-bio {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    display: flex;
    gap: 25px;
    margin: 40px 0;
}

.author-bio-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-bio-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    text-transform: uppercase;
    color: #999;
    font-weight: 500;
}

.author-bio-content h3 {
    margin: 0 0 15px;
    font-size: 24px;
    color: #8b0000;
}

.author-bio-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.author-social {
    display: flex;
    gap: 15px;
}

.author-social a {
    color: #8b0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.author-social a:hover {
    text-decoration: underline;
}

/* Related Posts */
.related-posts {
    margin: 50px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
}

.related-posts h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 28px;
    color: #2c3e50;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.related-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.related-card h4 {
    padding: 20px 20px 10px;
    margin: 0;
    font-size: 18px;
}

.related-card h4 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.related-card h4 a:hover {
    color: #8b0000;
}

.related-meta {
    padding: 0 20px 20px;
    font-size: 13px;
    color: #999;
}

/* Comments Section */
.comments-section {
    margin: 50px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
}

.comments-section h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 28px;
    color: #2c3e50;
}

.comment {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-header strong {
    color: #2c3e50;
    font-size: 16px;
}

.comment-date {
    color: #999;
    font-size: 14px;
}

.comment-content p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.reply-btn {
    background: transparent;
    border: 1px solid #8b0000;
    color: #8b0000;
    padding: 6px 18px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.reply-btn:hover {
    background: #8b0000;
    color: white;
}

/* Comment Form */
.comment-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.comment-form h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    color: #2c3e50;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #8b0000;
}

.comment-form textarea {
    resize: vertical;
}

.submit-comment-btn {
    background: #8b0000;
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-comment-btn:hover {
    background: #a52a2a;
    transform: translateY(-2px);
}

/* ========================================
   SIDEBAR STYLES
   ======================================== */

.blog-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.widget-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: #2c3e50;
    padding-bottom: 12px;
    border-bottom: 2px solid #8b0000;
}

/* Search Widget */
.search-form {
    display: flex;
    gap: 8px;
}

.search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
}

.search-form input:focus {
    outline: none;
    border-color: #8b0000;
}

.search-form button {
    background: #8b0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.search-form button:hover {
    background: #a52a2a;
}

/* Categories Widget */
.widget-list {
    list-style: none;
    margin: 0;
}

.widget-list li {
    margin-bottom: 10px;
}

.widget-list a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s;
}

.widget-list a:hover {
    color: #8b0000;
}

.widget-list span {
    color: #999;
    font-size: 13px;
}

/* Popular Posts Widget */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post-item {
    display: flex;
    gap: 12px;
}

.popular-post-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #999;
    flex-shrink: 0;
}

.popular-post-content h4 {
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 1.4;
}

.popular-post-content a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.popular-post-content a:hover {
    color: #8b0000;
}

.popular-post-date {
    font-size: 12px;
    color: #999;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.newsletter-widget p {
    margin-bottom: 15px;
    font-size: 15px;
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
}

.sidebar-newsletter-form button {
    background: #ffeb3b;
    color: #8b0000;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.sidebar-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* Ad Widget */
.ad-widget {
    text-align: center;
}

.ad-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    padding: 80px 20px;
    border-radius: 8px;
}

/* Tag Cloud Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    background: #f8f9fa;
    color: #666;
    padding: 6px 14px;
    border-radius: 15px;text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.tag-cloud a:hover {
    background: #8b0000;
    color: white;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .blog-post-container {
        grid-template-columns: 1fr 300px;
        gap: 35px;
    }

    .blog-post-content {
        padding: 40px 35px;
    }

    .post-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .blog-post-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .post-title {
        font-size: 32px;
    }

    .post-body h2 {
        font-size: 28px;
    }

    .featured-content {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 250px;
    }

    .comparison-columns {
        grid-template-columns: 1fr;
    }

    .two-column-list {
        grid-template-columns: 1fr;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .blog-post-content {
        padding: 30px 25px;
    }

    .post-title {
        font-size: 28px;
    }

    .post-body {
        font-size: 17px;
    }

    .post-body h2 {
        font-size: 24px;
    }

    .post-body h3 {
        font-size: 20px;
    }

    .post-meta-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .comment-form .form-row {
        grid-template-columns: 1fr;
    }

    .post-table {
        font-size: 14px;
    }

    .post-table th,
    .post-table td {
        padding: 10px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        justify-content: center;
    }

    .post-cta-box {
        padding: 25px 20px;
    }

    .post-cta-box h3 {
        font-size: 22px;
    }

    .coupon-code {
        font-size: 18px;
    }

    .comparison-box {
        padding: 20px;
    }

    .accordion-header h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .blog-post-content {
        padding: 20px 15px;
    }

    .post-title {
        font-size: 24px;
    }

    .post-body {
        font-size: 16px;
    }

    .post-body h2 {
        font-size: 22px;
    }

    .post-body h3 {
        font-size: 18px;
    }

    .lead-paragraph {
        font-size: 18px;
    }

    .table-of-contents {
        padding: 20px;
    }

    .post-info-box,
    .post-warning-box,
    .post-success-box,
    .post-highlight-box {
        padding: 15px 20px;
    }

    .post-blockquote {
        padding: 20px;
        font-size: 17px;
    }

    .post-table-wrapper {
        font-size: 13px;
    }

    .post-code-box {
        padding: 20px 15px;
    }

    .post-code-box pre {
        font-size: 12px;
    }

    .post-cta-box {
        padding: 20px 15px;
    }

    .post-cta-box h3 {
        font-size: 20px;
    }

    .post-cta-box p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .author-bio {
        padding: 25px 20px;
    }

    .author-bio-avatar {
        width: 100px;
        height: 100px;
    }

    .author-bio-content h3 {
        font-size: 20px;
    }

    .related-posts,
    .comments-section {
        padding: 25px 20px;
    }

    .comment {
        padding: 20px 15px;
        flex-direction: column;
    }

    .comment-avatar {
        width: 50px;
        height: 50px;
    }

    .comment-form {
        padding: 20px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .widget-title {
        font-size: 18px;
    }

    .share-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .top-bar,
    header,
    .breadcrumb,
    .blog-sidebar,
    .post-share,
    .author-social,
    .related-posts,
    .comments-section,
    footer {
        display: none !important;
    }

    .blog-post-container {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .blog-post-content {
        box-shadow: none;
        padding: 0;
    }

    .post-title {
        color: #000;
        font-size: 28px;
    }

    .post-body h2,
    .post-body h3 {
        color: #000;
        page-break-after: avoid;
    }

    .post-body {
        font-size: 12pt;
        line-height: 1.6;
        color: #000;
    }

    .post-info-box,
    .post-warning-box,
    .post-success-box,
    .post-highlight-box,
    .post-blockquote,
    .post-cta-box {
        border: 1px solid #000;
        page-break-inside: avoid;
    }

    .post-table {
        page-break-inside: avoid;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ========================================
   UTILITY CLASSES FOR WORDPRESS
   ======================================== */

/* WordPress Alignment Classes */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin: 20px auto;
    text-align: center;
}

.alignnone {
    margin: 20px 0;
}

/* WordPress Caption */
.wp-caption {
    max-width: 100%;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

.wp-caption img {
    width: 100%;
    height: auto;
    display: block;
}

.wp-caption-text {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* WordPress Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* WordPress Embeds */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 30px 0;
    border-radius: 10px;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* WordPress Continue Reading */
.more-link {
    display: inline-block;
    background: #8b0000;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background 0.3s;
}

.more-link:hover {
    background: #a52a2a;
}

/* Sticky Post */
.sticky {
    border-left: 5px solid #ffeb3b;
}

/* Post Format Icons */
.format-video:before {
    content: "🎥 ";
}

.format-audio:before {
    content: "🎵 ";
}

.format-image:before {
    content: "📷 ";
}

.format-gallery:before {
    content: "🖼️ ";
}

.format-quote:before {
    content: "💬 ";
}

/* ========================================
   ADDITIONAL CONTENT ELEMENTS
   ======================================== */

/* Notice Box */
.notice-box {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 5px;
}

.notice-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2e7d32;
    font-size: 18px;
}

/* Download Box */
.download-box {
    background: #fff3e0;
    border: 2px solid #ff9800;
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
    text-align: center;
}

.download-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #e65100;
    font-size: 20px;
}

.download-btn {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.download-btn:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

/* Step by Step Guide */
.step-guide {
    counter-reset: step-counter;
    margin: 30px 0;
}

.step-item {
    counter-increment: step-counter;
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.step-item:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: #8b0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.step-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #2c3e50;
}

.step-item p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.7;
}

/* Pros and Cons List */
.pros-cons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.pros-box,
.cons-box {
    padding: 25px;
    border-radius: 8px;
}

.pros-box {
    background: #d4edda;
    border: 2px solid #28a745;
}

.cons-box {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.pros-box h4,
.cons-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.pros-box h4 {
    color: #155724;
}

.cons-box h4 {
    color: #721c24;
}

.pros-box ul,
.cons-box ul {
    margin: 0;
    padding-left: 20px;
}

.pros-box li,
.cons-box li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* FAQ Schema Style */
.faq-schema {
    margin: 30px 0;
}

.faq-schema-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-schema-question {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    font-size: 17px;
    transition: background 0.3s;
}

.faq-schema-question:hover {
    background: #e9ecef;
}

.faq-schema-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-schema-item.active .faq-schema-answer {
    padding: 20px 25px;
    max-height: 500px;
}

/* Progress Bar (for reading progress) */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #8b0000;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Jump to Top Button */
.jump-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #8b0000;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

.jump-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.jump-to-top:hover {
    background: #a52a2a;
    transform: translateY(-5px);
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .pros-cons-container {
        grid-template-columns: 1fr;
    }

    .step-item {
        padding-left: 60px;
    }

    .step-item:before {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .jump-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}




/* ========================================
   BLOG PAGE STYLES - Add to end of style.css
   ======================================== */

/* Blog Categories Filter */
.blog-categories {
    background: white;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.category-btn {
    background: #f8f9fa;
    border: 2px solid #ddd;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    color: #2c3e50;
}

.category-btn:hover {
    background: #8b0000;
    color: white;
    border-color: #8b0000;
}

.category-btn.active {
    background: #8b0000;
    color: white;
    border-color: #8b0000;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.12);
    margin-bottom: 50px;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffeb3b;
    color: #8b0000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.featured-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.featured-text {
    padding: 45px;
}

.featured-text h2 {
    color: #2c3e50;
    font-size: 32px;
    margin: 15px 0 12px;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin: 15px 0 25px;
}

.read-more-btn {
    display: inline-block;
    background: #8b0000;
    color: white;
    padding: 14px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background: #a52a2a;
    transform: translateY(-2px);
}

/* Blog Posts Grid */
.blog-posts-section {
    margin: 50px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 15px;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.post-category.deals {
    background: #e8f5e9;
    color: #2e7d32;
}

.post-category.cooking {
    background: #fff3e0;
    color: #e65100;
}

.post-category.guides {
    background: #e3f2fd;
    color: #1565c0;
}

.post-category.reviews {
    background: #f3e5f5;
    color: #6a1b9a;
}

.blog-title {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.post-meta {
    color: #999;
    font-size: 13px;
    margin-bottom: 12px;
}

.blog-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    flex-grow: 1;
}

.read-more-link {
    color: #8b0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    align-self: flex-start;
}

.read-more-link:hover {
    color: #a52a2a;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 50px 0;
}

.page-btn {
    background: white;
    border: 2px solid #ddd;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    color: #2c3e50;
}

.page-btn:hover {
    background: #8b0000;
    color: white;
    border-color: #8b0000;
}

.page-btn.active {
    background: #8b0000;
    color: white;
    border-color: #8b0000;
}

.page-dots {
    color: #999;
    padding: 0 10px;
}

.next-btn {
    font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-content > p {
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    background: #ffeb3b;
    color: #8b0000;
    border: none;
    padding: 16px 35px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.newsletter-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.85;
}

/* Popular Topics */
.popular-topics-section {
    margin: 50px 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.topic-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 3px 15;
}







/* ========================================
   BLOG POST TEMPLATE STYLES
   Add to end of style.css
   ======================================== */

/* Blog Post Container - Two Column Layout */
.blog-post-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

/* Main Content Area */
.blog-post-content {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Post Header */
.post-header {
    margin-bottom: 40px;
}

.post-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.post-cat-link {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.post-cat-link.deals {
    background: #e8f5e9;
    color: #2e7d32;
}

.post-cat-link.guides {
    background: #e3f2fd;
    color: #1565c0;
}

.post-cat-link.cooking {
    background: #fff3e0;
    color: #e65100;
}

.post-cat-link.reviews {
    background: #f3e5f5;
    color: #6a1b9a;
}

.post-cat-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.post-title {
    font-size: 42px;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Post Meta Info */
.post-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.author-name a {
    color: #8b0000;
    text-decoration: none;
}

.author-name a:hover {
    text-decoration: underline;
}

.post-date {
    font-size: 14px;
    color: #999;
}

.post-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.post-stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Featured Image */
.post-featured-image {
    margin: 30px 0 40px;
    border-radius: 10px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-featured-image figcaption {
    background: #f8f9fa;
    padding: 12px 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Table of Contents */
.table-of-contents {
    background: #f8f9fa;
    border-left: 4px solid #8b0000;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 5px;
}

.table-of-contents h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #2c3e50;
}

.table-of-contents ul {
    list-style: none;
    margin-left: 0;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: #8b0000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.table-of-contents a:hover {
    color: #a52a2a;
    transform: translateX(5px);
}

/* Post Body Content */
.post-body {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
}

.post-body section {
    margin-bottom: 50px;
}

.post-body h2 {
    font-size: 32px;
    color: #8b0000;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #8b0000;
}

.post-body h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 30px 0 15px;
}

.post-body h4 {
    font-size: 20px;
    color: #2c3e50;
    margin: 25px 0 12px;
}

.post-body p {
    margin-bottom: 20px;
}

.lead-paragraph {
    font-size: 20px;
    font-weight: 500;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Styled Lists */
.styled-list {
    margin: 20px 0 20px 2rem;
}

.styled-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.styled-list strong {
    color: #8b0000;
}

/* Info Boxes */
.post-info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 5px;
}

.post-warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 5px;
}

.post-success-box {
    background: #d4edda;
    border-left: 4px solid #28a745;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 5px;
}

.post-highlight-box {
    background: #f8f9fa;
    border: 2px solid #8b0000;
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
}

.post-info-box h4,
.post-warning-box h4,
.post-success-box h4,
.post-highlight-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.post-info-box p,
.post-warning-box p,
.post-success-box p,
.post-highlight-box p {
    margin-bottom: 0;
    font-size: 16px;
}

/* Blockquote */
.post-blockquote {
    background: #f8f9fa;
    border-left: 5px solid #8b0000;
    padding: 25px 30px;
    margin: 30px 0;
    font-size: 19px;
    font-style: italic;
    color: #34495e;
    line-height: 1.7;
}

.post-blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    color: #8b0000;
}

/* Tables */
.post-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.post-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.post-table thead {
    background: #8b0000;
    color: white;
}

.post-table th,
.post-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.post-table th {
    font-weight: 600;
    font-size: 15px;
}

.post-table td {
    font-size: 15px;
}

.post-table tbody tr:hover {
    background: #f8f9fa;
}

.post-table tbody tr:last-child td {
    border-bottom: none;
}

/* Two Column List */
.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
}

.two-column-list .column {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.two-column-list h4 {
    margin-top: 0;
    color: #8b0000;
    font-size: 18px;
}

.two-column-list ul {
    margin-left: 1.5rem;
}

.two-column-list li {
    margin-bottom: 8px;
}

/* Video Wrapper */
.post-video-wrapper {
    margin: 30px 0;
}

.video-placeholder {
    background: #000;
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
}

/* Accordion */
.post-accordion {
    margin: 25px 0;
}

.accordion-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #e9ecef;
}

.accordion-header h4 {
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
}

.accordion-icon {
    font-size: 18px;
    color: #8b0000;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px 25px;
    max-height: 500px;
}

/* Comparison Box */
.comparison-box {
    background: #f8f9fa;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
    border: 2px solid #ddd;
}

.comparison-box h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: #2c3e50;
}

.comparison-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comparison-good,
.comparison-bad {
    padding: 20px;
    border-radius: 8px;
}

.comparison-good {
    background: #d4edda;
    border: 2px solid #28a745;
}

.comparison-bad {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.comparison-good h5,
.comparison-bad h5 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

.comparison-good ul,
.comparison-bad ul {
    margin-left: 1.5rem;
}

.comparison-good li,
.comparison-bad li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Code Box */
.post-code-box {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    overflow-x: auto;
}

.post-code-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffeb3b;
    font-size: 18px;
}

.post-code-box pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.post-code-box code {
    color: #ecf0f1;
}

/* Post Images */
.post-image {
    margin: 30px 0;
    text-align: center;
}

.post-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.post-image figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* CTA Box */
.post-cta-box {
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    color: white;
    padding: 35px;
    text-align: center;
    border-radius: 10px;
    margin: 40px 0;
}

.post-cta-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 26px;
    color: white;
}

.post-cta-box p {
    margin-bottom: 25px;
    font-size: 18px;
}

.coupon-code {
    background: #ffeb3b;
    color: #8b0000;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    margin: 0 5px;
}

.cta-button {
    display: inline-block;
    background: #ffeb3b;
    color: #8b0000;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.tag-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.post-tag {
    background: #f8f9fa;
    color: #666;
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.post-tag:hover {
    background: #8b0000;
    color: white;
}

/* Share Buttons */
.post-share {
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 30px 0;
}

.post-share h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #2c3e50;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.pinterest {
    background: #e60023;
    color: white;
}

.share-btn.email {
    background: #34495e;
    color: white;
}

.share-btn.print {
    background: #95a5a6;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Author Bio */
.author-bio {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    display: flex;
    gap: 25px;
    margin: 40px 0;
}

.author-bio-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-bio-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    text-transform: uppercase;
    color: #999;
    font-weight: 500;
}

.author-bio-content h3 {
    margin: 0 0 15px;
    font-size: 24px;
    color: #8b0000;
}

.author-bio-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.author-social {
    display: flex;
    gap: 15px;
}

.author-social a {
    color: #8b0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.author-social a:hover {
    text-decoration: underline;
}

/* Related Posts */
.related-posts {
    margin: 50px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
}

.related-posts h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 28px;
    color: #2c3e50;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.related-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.related-card h4 {
    padding: 20px 20px 10px;
    margin: 0;
    font-size: 18px;
}

.related-card h4 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.related-card h4 a:hover {
    color: #8b0000;
}

.related-meta {
    padding: 0 20px 20px;
    font-size: 13px;
    color: #999;
}

/* Comments Section */
.comments-section {
    margin: 50px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
}

.comments-section h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 28px;
    color: #2c3e50;
}

.comment {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-header strong {
    color: #2c3e50;
    font-size: 16px;
}

.comment-date {
    color: #999;
    font-size: 14px;
}

.comment-content p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.reply-btn {
    background: transparent;
    border: 1px solid #8b0000;
    color: #8b0000;
    padding: 6px 18px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.reply-btn:hover {
    background: #8b0000;
    color: white;
}

/* Comment Form */
.comment-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.comment-form h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    color: #2c3e50;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #8b0000;
}

.comment-form textarea {
    resize: vertical;
}

.submit-comment-btn {
    background: #8b0000;
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-comment-btn:hover {
    background: #a52a2a;
    transform: translateY(-2px);
}

/* ========================================
   SIDEBAR STYLES
   ======================================== */

.blog-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.widget-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: #2c3e50;
    padding-bottom: 12px;
    border-bottom: 2px solid #8b0000;
}

/* Search Widget */
.search-form {
    display: flex;
    gap: 8px;
}

.search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
}

.search-form input:focus {
    outline: none;
    border-color: #8b0000;
}

.search-form button {
    background: #8b0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.search-form button:hover {
    background: #a52a2a;
}

/* Categories Widget */
.widget-list {
    list-style: none;
    margin: 0;
}

.widget-list li {
    margin-bottom: 10px;
}

.widget-list a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s;
}

.widget-list a:hover {
    color: #8b0000;
}

.widget-list span {
    color: #999;
    font-size: 13px;
}

/* Popular Posts Widget */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post-item {
    display: flex;
    gap: 12px;
}

.popular-post-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #999;
    flex-shrink: 0;
}

.popular-post-content h4 {
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 1.4;
}

.popular-post-content a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.popular-post-content a:hover {
    color: #8b0000;
}

.popular-post-date {
    font-size: 12px;
    color: #999;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.newsletter-widget p {
    margin-bottom: 15px;
    font-size: 15px;
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
}

.sidebar-newsletter-form button {
    background: #ffeb3b;
    color: #8b0000;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.sidebar-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* Ad Widget */
.ad-widget {
    text-align: center;
}

.ad-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    padding: 80px 20px;
    border-radius: 8px;
}

/* Tag Cloud Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    background: #f8f9fa;
    color: #666;
    padding: 6px 14px;
    border-radius: 15px;text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.tag-cloud a:hover {
    background: #8b0000;
    color: white;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .blog-post-container {
        grid-template-columns: 1fr 300px;
        gap: 35px;
    }

    .blog-post-content {
        padding: 40px 35px;
    }

    .post-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .blog-post-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .post-title {
        font-size: 32px;
    }

    .post-body h2 {
        font-size: 28px;
    }

    .featured-content {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 250px;
    }

    .comparison-columns {
        grid-template-columns: 1fr;
    }

    .two-column-list {
        grid-template-columns: 1fr;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .blog-post-content {
        padding: 30px 25px;
    }

    .post-title {
        font-size: 28px;
    }

    .post-body {
        font-size: 17px;
    }

    .post-body h2 {
        font-size: 24px;
    }

    .post-body h3 {
        font-size: 20px;
    }

    .post-meta-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .comment-form .form-row {
        grid-template-columns: 1fr;
    }

    .post-table {
        font-size: 14px;
    }

    .post-table th,
    .post-table td {
        padding: 10px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        justify-content: center;
    }

    .post-cta-box {
        padding: 25px 20px;
    }

    .post-cta-box h3 {
        font-size: 22px;
    }

    .coupon-code {
        font-size: 18px;
    }

    .comparison-box {
        padding: 20px;
    }

    .accordion-header h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .blog-post-content {
        padding: 20px 15px;
    }

    .post-title {
        font-size: 24px;
    }

    .post-body {
        font-size: 16px;
    }

    .post-body h2 {
        font-size: 22px;
    }

    .post-body h3 {
        font-size: 18px;
    }

    .lead-paragraph {
        font-size: 18px;
    }

    .table-of-contents {
        padding: 20px;
    }

    .post-info-box,
    .post-warning-box,
    .post-success-box,
    .post-highlight-box {
        padding: 15px 20px;
    }

    .post-blockquote {
        padding: 20px;
        font-size: 17px;
    }

    .post-table-wrapper {
        font-size: 13px;
    }

    .post-code-box {
        padding: 20px 15px;
    }

    .post-code-box pre {
        font-size: 12px;
    }

    .post-cta-box {
        padding: 20px 15px;
    }

    .post-cta-box h3 {
        font-size: 20px;
    }

    .post-cta-box p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .author-bio {
        padding: 25px 20px;
    }

    .author-bio-avatar {
        width: 100px;
        height: 100px;
    }

    .author-bio-content h3 {
        font-size: 20px;
    }

    .related-posts,
    .comments-section {
        padding: 25px 20px;
    }

    .comment {
        padding: 20px 15px;
        flex-direction: column;
    }

    .comment-avatar {
        width: 50px;
        height: 50px;
    }

    .comment-form {
        padding: 20px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .widget-title {
        font-size: 18px;
    }

    .share-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .top-bar,
    header,
    .breadcrumb,
    .blog-sidebar,
    .post-share,
    .author-social,
    .related-posts,
    .comments-section,
    footer {
        display: none !important;
    }

    .blog-post-container {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .blog-post-content {
        box-shadow: none;
        padding: 0;
    }

    .post-title {
        color: #000;
        font-size: 28px;
    }

    .post-body h2,
    .post-body h3 {
        color: #000;
        page-break-after: avoid;
    }

    .post-body {
        font-size: 12pt;
        line-height: 1.6;
        color: #000;
    }

    .post-info-box,
    .post-warning-box,
    .post-success-box,
    .post-highlight-box,
    .post-blockquote,
    .post-cta-box {
        border: 1px solid #000;
        page-break-inside: avoid;
    }

    .post-table {
        page-break-inside: avoid;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ========================================
   UTILITY CLASSES FOR WORDPRESS
   ======================================== */

/* WordPress Alignment Classes */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin: 20px auto;
    text-align: center;
}

.alignnone {
    margin: 20px 0;
}

/* WordPress Caption */
.wp-caption {
    max-width: 100%;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

.wp-caption img {
    width: 100%;
    height: auto;
    display: block;
}

.wp-caption-text {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* WordPress Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* WordPress Embeds */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 30px 0;
    border-radius: 10px;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* WordPress Continue Reading */
.more-link {
    display: inline-block;
    background: #8b0000;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background 0.3s;
}

.more-link:hover {
    background: #a52a2a;
}

/* Sticky Post */
.sticky {
    border-left: 5px solid #ffeb3b;
}

/* Post Format Icons */
.format-video:before {
    content: "🎥 ";
}

.format-audio:before {
    content: "🎵 ";
}

.format-image:before {
    content: "📷 ";
}

.format-gallery:before {
    content: "🖼️ ";
}

.format-quote:before {
    content: "💬 ";
}

/* ========================================
   ADDITIONAL CONTENT ELEMENTS
   ======================================== */

/* Notice Box */
.notice-box {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 5px;
}

.notice-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2e7d32;
    font-size: 18px;
}

/* Download Box */
.download-box {
    background: #fff3e0;
    border: 2px solid #ff9800;
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
    text-align: center;
}

.download-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #e65100;
    font-size: 20px;
}

.download-btn {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.download-btn:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

/* Step by Step Guide */
.step-guide {
    counter-reset: step-counter;
    margin: 30px 0;
}

.step-item {
    counter-increment: step-counter;
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.step-item:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: #8b0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.step-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #2c3e50;
}

.step-item p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.7;
}

/* Pros and Cons List */
.pros-cons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.pros-box,
.cons-box {
    padding: 25px;
    border-radius: 8px;
}

.pros-box {
    background: #d4edda;
    border: 2px solid #28a745;
}

.cons-box {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.pros-box h4,
.cons-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.pros-box h4 {
    color: #155724;
}

.cons-box h4 {
    color: #721c24;
}

.pros-box ul,
.cons-box ul {
    margin: 0;
    padding-left: 20px;
}

.pros-box li,
.cons-box li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* FAQ Schema Style */
.faq-schema {
    margin: 30px 0;
}

.faq-schema-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-schema-question {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    font-size: 17px;
    transition: background 0.3s;
}

.faq-schema-question:hover {
    background: #e9ecef;
}

.faq-schema-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-schema-item.active .faq-schema-answer {
    padding: 20px 25px;
    max-height: 500px;
}

/* Progress Bar (for reading progress) */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #8b0000;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Jump to Top Button */
.jump-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #8b0000;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

.jump-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.jump-to-top:hover {
    background: #a52a2a;
    transform: translateY(-5px);
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .pros-cons-container {
        grid-template-columns: 1fr;
    }

    .step-item {
        padding-left: 60px;
    }

    .step-item:before {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .jump-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}















/* ========================================
   FEATURED POST - FIXED CSS
   ======================================== */

/* Featured Post Section */
.featured-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.12);
    margin-bottom: 50px;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffeb3b;
    color: #8b0000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

/* Featured Image Container - FIXED */
.featured-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 500px;
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Featured Image Link */
.featured-image a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Featured Image - CRITICAL FIX */
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

/* Image Hover Effect */
.featured-image a:hover img {
    transform: scale(1.05);
}

/* Placeholder Text */
.featured-image span {
    color: white;
    font-size: 18px;
    font-weight: bold;
    z-index: 1;
}

/* Featured Text Content */
.featured-text {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-text h2 {
    color: #2c3e50;
    font-size: 32px;
    margin: 15px 0 12px;
    line-height: 1.3;
}

.featured-text h2:hover {
    color: #8b0000;
}

.featured-excerpt {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin: 15px 0 25px;
}

.read-more-btn {
    display: inline-block;
    background: #8b0000;
    color: white;
    padding: 14px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: #a52a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

/* Responsive Design for Featured Post */
@media (max-width: 992px) {
    .featured-content {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 300px;
        max-height: 400px;
    }

    .featured-text {
        padding: 35px;
    }

    .featured-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .featured-image {
        min-height: 250px;
        max-height: 350px;
    }

    .featured-text {
        padding: 30px 25px;
    }

    .featured-text h2 {
        font-size: 24px;
    }

    .featured-excerpt {
        font-size: 16px;
    }

    .read-more-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .featured-badge {
        top: 15px;
        left: 15px;
        padding: 6px 15px;
        font-size: 13px;
    }

    .featured-image {
        min-height: 200px;
        max-height: 300px;
    }

    .featured-text {
        padding: 25px 20px;
    }

    .featured-text h2 {
        font-size: 22px;
    }

    .featured-excerpt {
        font-size: 15px;
        margin: 12px 0 20px;
    }
}




/* ========================================
   SINGLE POST - FIXED HEADER CSS
   ======================================== */

/* Blog Post Container */
.blog-post-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

/* Main Content Area */
.blog-post-content {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative; /* Changed from sticky */
}

/* Post Header - NO STICKY */
.post-header {
    margin-bottom: 30px;
    position: relative; /* NOT sticky */
}

.post-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-cat-link {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.post-cat-link.deals {
    background: #e8f5e9;
    color: #2e7d32;
}

.post-cat-link.guides {
    background: #e3f2fd;
    color: #1565c0;
}

.post-cat-link.cooking {
    background: #fff3e0;
    color: #e65100;
}

.post-cat-link.reviews {
    background: #f3e5f5;
    color: #6a1b9a;
}

.post-cat-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Post Title */
.post-title {
    font-size: 36px; /* Reduced from 42px */
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Post Meta Info */
.post-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0; /* Reduced padding */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 0; /* Removed extra margin */
    flex-wrap: wrap;
    gap: 15px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px; /* Reduced from 50px */
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px; /* Reduced */
}

.author-name a {
    color: #8b0000;
    text-decoration: none;
}

.author-name a:hover {
    text-decoration: underline;
}

.post-date {
    font-size: 13px; /* Reduced */
    color: #999;
}

.post-stats {
    display: flex;
    gap: 15px;
    font-size: 13px; /* Reduced */
    color: #666;
}

.post-stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Featured Image - FIXED */
.post-featured-image {
    margin: 30px 0 30px; /* Reduced top margin */
    border-radius: 10px;
    overflow: hidden;
    max-height: 500px; /* Added max height */
}

.post-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px; /* Limit image height */
    object-fit: cover; /* Crop if needed */
    object-position: center;
    display: block;
}

.post-featured-image figcaption {
    background: #f8f9fa;
    padding: 10px 20px; /* Reduced padding */
    font-size: 13px; /* Reduced */
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Sidebar - STICKY (This is OK) */
.blog-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 40px); /* Prevent too tall sidebar */
    overflow-y: auto; /* Allow scroll if needed */
}

/* Remove sticky from sidebar on mobile */
@media (max-width: 992px) {
    .blog-sidebar {
        position: static;
        max-height: none;
        overflow-y: visible;
    }
}

/* Post Body */
.post-body {
    font-size: 17px; /* Reduced from 18px */
    line-height: 1.8;
    color: #2c3e50;
}

.post-body h2 {
    font-size: 28px; /* Reduced from 32px */
    color: #8b0000;
    margin: 35px 0 18px; /* Reduced margins */
    padding-bottom: 10px;
    border-bottom: 3px solid #8b0000;
}

.post-body h3 {
    font-size: 22px; /* Reduced from 24px */
    color: #2c3e50;
    margin: 28px 0 14px;
}

/* Table of Contents - FIXED */
.table-of-contents {
    background: #f8f9fa;
    border-left: 4px solid #8b0000;
    padding: 20px 25px; /* Reduced padding */
    margin: 25px 0; /* Reduced margin */
    border-radius: 5px;
    position: relative; /* NOT sticky */
}

.table-of-contents h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2rem; /* Reduced */
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-post-container {
        grid-template-columns: 1fr 300px;
        gap: 35px;
    }

    .blog-post-content {
        padding: 40px 35px;
    }

    .post-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .blog-post-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .post-title {
        font-size: 28px;
    }

    .post-body h2 {
        font-size: 24px;
    }

    .post-featured-image {
        max-height: 400px;
    }

    .post-featured-image img {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .blog-post-content {
        padding: 30px 25px;
    }

    .post-title {
        font-size: 24px;
    }

    .post-body {
        font-size: 16px;
    }

    .post-body h2 {
        font-size: 22px;
    }

    .post-body h3 {
        font-size: 19px;
    }

    .post-meta-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .post-featured-image {
        max-height: 350px;
        margin: 20px 0 25px;
    }

    .post-featured-image img {
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    .blog-post-content {
        padding: 25px 20px;
    }

    .post-title {
        font-size: 22px;
    }

    .post-body {
        font-size: 15px;
    }

    .post-body h2 {
        font-size: 20px;
    }

    .post-body h3 {
        font-size: 18px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .post-featured-image {
        max-height: 300px;
        margin: 15px 0 20px;
    }

    .post-featured-image img {
        max-height: 300px;
    }
}

/* Compact Header Option (Alternative) */
.post-header.compact {
    padding: 15px 0;
}

.post-header.compact .post-title {
    font-size: 28px;
    margin-bottom: 12px;
}

.post-header.compact .post-meta-info {
    padding: 10px 0;
}

.post-header.compact .author-avatar {
    width: 40px;
    height: 40px;
}