/* ===== SINGLE BLOG PAGE STYLES ===== */

/* Breadcrumbs */
.breadcrumbs {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.container {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}



.breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs ul li {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs ul li:after {
    content: '/';
    margin: 0 10px;
    color: #ccc;
}

.breadcrumbs ul li:last-child:after {
    display: none;
}

.breadcrumbs ul li a {
    color: #c17b4b;
    text-decoration: none;
}

.breadcrumbs ul li a:hover {
    text-decoration: underline;
}

/* Single Blog Post */
.single-blog-post {
    padding: 50px 0;
    background: #fff;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Main Content */
.blog-content {
    background: white;
}

.blog-title {
    font-size: 2.2rem;
    color: #2c1810;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

p {
    margin-bottom: 15px;
    color: #000000 !important;
    font-size: 20px;
}

.meta-item {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: #c17b4b;
}

.blog-body {
    line-height: 1.8;
    color: #444;
}

.blog-body h2 {
    font-size: 1.8rem;
    color: #2c1810;
    margin: 40px 0 20px;
}

.blog-body h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin: 30px 0 15px;
}

.blog-body p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: black;
}

.blog-body ul, 
.blog-body ol {
    margin: 20px 0 30px;
    padding-left: 20px;
}

.blog-body li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.blog-body strong {
    color: #2c1810;
    font-weight: 600;
}

/* Tip Box */
.tip-box {
    background: #fef9e7;
    border-left: 4px solid #c17b4b;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.tip-box h4 {
    color: #2c1810;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tip-box h4 i {
    color: #c17b4b;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonial {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #eee;
}

.testimonial p {
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-author {
    color: #c17b4b;
    font-weight: 600;
    text-align: right;
    margin-bottom: 0 !important;
}

/* CTA Box */
.cta-box {
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin: 40px 0;
    border: .5px solid #c17b4b;
}

.cta-box h3 {
    color: rgb(0, 0, 0) !important;
    margin-top: 0 !important;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: #c17b4b;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #a5673a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Share Section */
.share-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.share-section h4 {
    color: #2c1810;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.share-btn:hover {
    background: #c17b4b;
    color: white;
    border-color: #c17b4b;
    transform: translateY(-2px);
}

.share-btn.facebook:hover { background: #3b5998; }
.share-btn.twitter:hover { background: #1da1f2; }
.share-btn.whatsapp:hover { background: #25d366; }
.share-btn.linkedin:hover { background: #0077b5; }
.share-btn.pinterest:hover { background: #bd081c; }

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: #2c1810;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.product-list,
.popular-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list li,
.popular-posts li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.product-list li:last-child,
.popular-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product-list a,
.popular-posts a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    line-height: 1.4;
}

.product-list a:hover,
.popular-posts a:hover {
    color: #c17b4b;
}

.cta-widget {
    background: linear-gradient(135deg, #c17b4b 0%, #a5673a 100%);
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.cta-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.sidebar-cta {
    display: inline-block;
    background: white;
    color: #c17b4b;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.sidebar-cta:hover {
    background: #2c1810;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-meta {
        gap: 15px;
    }
    
    .blog-body h2 {
        font-size: 1.5rem;
    }
    
    .blog-body h3 {
        font-size: 1.2rem;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .single-blog-post {
        padding: 30px 0;
    }
    
    .blog-title {
        font-size: 1.5rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .breadcrumbs ul li {
        font-size: 0.8rem;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

/* ===== SIDEBAR WIDGETS STYLES ===== */

/* Company Stats */
.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
    text-align: center;
}

.stat-item {
    padding: 10px 5px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #c17b4b;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
}

/* Bestseller Stats */
.bestseller-stats .stats-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.stat-row:last-child {
    border-bottom: none;
}

.product-name {
    flex: 1;
    font-size: 0.95rem;
    color: #2c1810;
    font-weight: 500;
}

.product-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    background: #f0f0f0;
    color: #666;
}

.product-badge.hot {
    background: #ff6b6b;
    color: white;
}

.product-badge.best {
    background: #44a57c;
    color: white;
}

.product-sales {
    font-size: 0.8rem;
    color: #c17b4b;
    font-weight: 600;
}

/* Rating Widget */
.rating-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.overall-rating {
    text-align: center;
    margin-bottom: 20px;
}

.big-rating {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c1810;
    display: block;
    line-height: 1;
}

.rating-stars {
    color: #ffc107;
    font-size: 1rem;
    margin: 5px 0;
    display: block;
}

.total-reviews {
    font-size: 0.8rem;
    color: #666;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-label {
    font-size: 0.8rem;
    color: #666;
    width: 90px;
}

.rating-bar {
    flex: 1;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    display: block;
    height: 100%;
    background: #c17b4b;
    border-radius: 3px;
}

.rating-percent {
    font-size: 0.8rem;
    color: #2c1810;
    font-weight: 600;
    width: 45px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: #44a57c;
    width: 20px;
}

/* Quick Facts */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.fact-item {
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.fact-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c17b4b;
}

.fact-label {
    font-size: 0.8rem;
    color: #666;
}

/* Testimonial Highlight */
.testimonial-highlight {
    background: #ffffff;
    color: white;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(255,255,255,0.2);
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin: 15px 0;
    color: rgba(255,255,255,0.9);
}

.testimonial-customer {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* Offer Widget */
.offer-widget {
    background: linear-gradient(135deg, #fef9e7 0%, #fff5d6 100%);
    text-align: center;
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: #c17b4b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
}

.offer-widget h4 {
    color: #2c1810;
    margin-bottom: 10px;
}

.offer-desc {
    color: #666;
    margin-bottom: 10px;
}

.offer-code {
    background: #2c1810;
    color: white;
    padding: 8px;
    border-radius: 5px;
    font-size: 1rem;
}

.code {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Quality Seals */
.quality-seal {
    background: #f8f9fa;
}

.seals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.seal {
    padding: 8px;
    background: white;
    border-radius: 5px;
    font-size: 0.8rem;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 5px;
}

.seal i {
    color: #44a57c;
}

/* Hover Effects */
.stat-row:hover .product-name {
    color: #c17b4b;
}

.fact-item:hover {
    background: #c17b4b;
}

.fact-item:hover .fact-value,
.fact-item:hover .fact-label {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .rating-row {
        flex-wrap: wrap;
    }
    
    .rating-label {
        width: 100%;
    }
    
    .seals {
        grid-template-columns: 1fr;
    }
}