

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color), #333);
    padding: 5rem 0 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx=".66" cy=".5" r=".6"><stop offset="0" stop-color="%23FFFFFF" stop-opacity=".1"/><stop offset="1" stop-color="%23FFFFFF" stop-opacity="0"/></radialGradient></defs><circle transform="translate(-50 -50)" cx="50" cy="50" r="40" fill="url(%23a)"/></svg>') repeat;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Hero Tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Blog Content Section */
.blog-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Featured Article */
.featured-article {
    position: relative;
    margin-bottom: 4rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-image {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--charcoal) 0%, #555 100%);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 3rem 2rem 2rem;
}

.featured-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    margin: 1rem 0;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

/* Blog Posts Section */
.blog-posts-section {
    margin-top: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: var(--charcoal);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--secondary-dark);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Blog Post Cards */
.blog-post-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-category.tech {
    background: #007bff;
}

.post-category.fashion {
    background: #e83e8c;
}

.post-category.travel {
    background: #fd7e14;
}

.post-category.holidays {
    background: #dc3545;
}

.post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.post-title a {
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f3f4;
}

.post-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    align-self: flex-start;
}

.post-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}


.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-hover);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), #333);
    border-radius: 2px;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: white;
}

.newsletter-widget .widget-title::after {
    background: rgba(255, 255, 255, 0.3);
}

.widget-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form .form-control {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px 0 0 8px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    box-shadow: none;
}

.newsletter-form .btn {
    background: var(--secondary-dark);
    border: 2px solid var(--secondary-dark);
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1rem;
}

.newsletter-form .btn:hover {
    background: var(--primary-color);
    border-color: #fff;
}

/* Popular Posts Widget */
.popular-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f3f4;
}

.popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content {
    flex-grow: 1;
}

.popular-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.popular-post-title a {
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
}

.popular-post-title a:hover {
    color: var(--primary-color);
}

.popular-post-meta {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.category-item:hover {
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.2);
    color: var(--primary-color);
    transform: translateX(5px);
}

.category-name {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.category-count {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Quick Tips Widget */
.quick-tips {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tip-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.tip-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--charcoal);
    margin: 0;
}

/* Featured Deals Widget */
.sidebar-deals {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-deal {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.deal-store {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.deal-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.deal-savings {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-sidebar {
        position: static;
        top: auto;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 3rem 0 2rem;
    }
    
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-content {
        padding: 3rem 0;
    }
    
    .featured-article {
        margin-bottom: 3rem;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .featured-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .blog-filters {
        width: 100%;
        justify-content: flex-start;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .post-image {
        height: 180px;
    }
    
    .post-content {
        padding: 1.25rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .popular-post {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .popular-post-image {
        width: 70px;
        height: 50px;
    }
    
    .popular-post-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .blog-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .hero-tags {
        gap: 0.5rem;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .featured-meta {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        font-size: 0.75rem;
        padding: 0.35rem 0.8rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .sidebar-deal {
        padding: 1.25rem;
    }
    
    .tip-item {
        gap: 0.75rem;
    }
    
    .tip-icon {
        font-size: 1rem;
    }
    
    .tip-text {
        font-size: 0.9rem;
    }
}

/* Focus states for accessibility */
.filter-btn:focus,
.post-link:focus,
.category-item:focus,
.popular-post-title a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .blog-post-card,
    .sidebar-widget {
        border: 1px solid #dee2e6;
    }
    
    .post-category {
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .blog-hero::before {
        animation: none;
    }
    
    .blog-post-card:hover,
    .featured-article:hover,
    .sidebar-widget:hover,
    .filter-btn:hover,
    .tag:hover,
    .category-item:hover,
    .post-link:hover {
        transform: none;
    }
    
    .blog-post-card:hover .post-image img {
        transform: none;
    }
}


/* Blog Details Specific Styles */
.blog-details-content {
    padding: 2rem 0 4rem;
    background: #f8f9fa;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Article Styles */
.blog-details-article {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

/* Article Header */
.article-header {
    padding: 1rem 3rem 2rem;
    border-bottom: 1px solid #f1f3f4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.article-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.article-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Author Info */
.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.email { background: #ea4335; }
.share-btn.copy { background: #6c757d; }

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Article Image */
.article-image {
    margin: 0 3rem 3rem;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.image-caption {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* Article Body */
.article-body {
    padding: 0 3rem 3rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 2rem 0 1rem;
}

.article-body h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 1.5rem 0 0.75rem;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-body .lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: #495057;
    margin-bottom: 2rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.article-body strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* Table of Contents */
.table-of-contents {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
}

.table-of-contents h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 1rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.table-of-contents a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

/* Highlight Boxes */
.highlight-box {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid;
}

.highlight-box h4 {
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.highlight-box p {
    margin: 0;
    font-size: 1rem;
}

.highlight-box.success {
    background: rgba(40, 167, 69, 0.1);
    border-left-color: var(--primary-color);
}

.highlight-box.success h4 {
    color: var(--primary-color);
}

.highlight-box.warning {
    background: rgba(255, 193, 7, 0.1);
    border-left-color: #ffc107;
}

.highlight-box.warning h4 {
    color: #e0a800;
}

.info-box {
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid rgba(23, 162, 184, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-box h4 {
    color: #17a2b8;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.info-box p {
    margin: 0;
    color: var(--charcoal);
}

/* Blockquote */
.article-quote {
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    position: relative;
}

.article-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 1rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.article-quote p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    font-style: italic;
}

.article-quote footer {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Sale Calendar */
.sale-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.month-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
}

.month-item h4 {
    color: var(--primary-color);
    margin: 0 0 1rem;
    font-weight: 700;
}

.month-item p {
    font-size: 0.9rem;
    margin: 0;
    color: #6c757d;
}

/* Bulk Categories */
.bulk-category {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    height: 100%;
}

.bulk-category h4 {
    color: var(--primary-color);
    margin: 0 0 1rem;
    font-weight: 700;
}

.bulk-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.bulk-category li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Action Steps */
.action-steps {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid #dee2e6;
}

.action-steps h3 {
    color: var(--charcoal);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
}

.action-steps h3::before {
    content: '🎯';
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.action-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.action-list li {
    counter-increment: step-counter;
    position: relative;
    background: white;
    margin-bottom: 1rem;
    padding: 1rem 1rem 1rem 3.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.action-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Article Conclusion */
.article-conclusion {
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    text-align: center;
}

.article-conclusion h2 {
    color: white;
    border: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.article-conclusion p {
    margin-bottom: 1rem;
    opacity: 0.95;
}

.article-conclusion p:last-child {
    margin-bottom: 0;
}

/* Article Tags */
.article-tags {
    padding: 2rem 3rem;
    border-top: 1px solid #f1f3f4;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.tags-label {
    font-weight: 600;
    color: var(--charcoal);
}

.tag-link {
    background: #f8f9fa;
    color: var(--charcoal);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.tag-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Author Bio */
.author-bio {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-bio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-bio h4 {
    margin: 0 0 1rem;
    color: var(--charcoal);
    font-weight: 700;
}

.author-bio p {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

.author-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.author-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Large Share Section */
.share-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    text-align: center;
}

.share-section h3 {
    margin: 0 0 2rem;
    color: var(--charcoal);
    font-weight: 700;
}

.share-buttons-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: var(--transition);
}

.share-btn-large.facebook { background: #3b5998; }
.share-btn-large.twitter { background: #1da1f2; }
.share-btn-large.linkedin { background: #0077b5; }

.share-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Article Navigation */
.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #f1f3f4;
    border-bottom: 1px solid #f1f3f4;
}

.nav-previous,
.nav-next {
    flex: 1;
    max-width: 48%;
}

.nav-previous a,
.nav-next a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--charcoal);
    transition: var(--transition);
    height: 100%;
}

.nav-previous a:hover,
.nav-next a:hover {
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.nav-next a {
    justify-content: flex-end;
    text-align: right;
}

.nav-content {
    flex: 1;
}

.nav-label {
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}

/* Related Posts */
.related-posts {
    margin: 4rem 0;
}

.related-posts h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 2rem;
    text-align: center;
}

.related-post {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.related-post-image {
    height: 150px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-post:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.related-post h4 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.related-post h4 a {
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
}

.related-post h4 a:hover {
    color: var(--primary-color);
}

.related-post-excerpt {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: auto;
    flex-grow: 1;
}

.related-post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f4;
}

/* Comments Section */
.comments-section {
    margin: 4rem 0 0;
    padding-top: 3rem;
    border-top: 2px solid var(--primary-color);
}

.comments-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 2rem;
}

/* Comment Form */
.comment-form {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
}

.comment-form h4 {
    margin: 0 0 1.5rem;
    color: var(--charcoal);
    font-weight: 700;
}

.comment-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.comment-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.1);
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comment {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.comment:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex-grow: 1;
}

.comment-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    align-items: center;
}

.comment-author {
    font-weight: 700;
    color: var(--charcoal);
}

.comment-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.comment p {
    margin: 0 0 1rem;
    line-height: 1.6;
    color: var(--charcoal);
}

.comment-reply {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.comment-reply:hover {
    color: var(--secondary-color);
}

/* Sticky TOC Sidebar */
.sticky-toc {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.toc-widget {
    background: white;
    border: 2px solid var(--primary-color);
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toc-link {
    padding: 0.75rem;
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
}

.toc-link:hover,
.toc-link.active {
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
    border-color: rgba(40, 167, 69, 0.2);
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sticky-toc {
        position: static;
        top: auto;
    }
    
    .toc-widget {
        order: -1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-details-content {
        padding: 1rem 0 3rem;
    }
    
    .article-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .article-image {
        margin: 0 1.5rem 2rem;
    }
    
    .article-image img {
        height: 250px;
    }
    
    .article-body {
        padding: 0 1.5rem 2rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-meta {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .article-author {
        padding: 1rem;
    }
    
    .social-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .table-of-contents {
        padding: 1.5rem;
    }
    
    .highlight-box,
    .info-box {
        padding: 1rem;
    }
    
    .action-steps {
        padding: 1.5rem;
    }
    
    .article-conclusion {
        padding: 2rem;
    }
    
    .article-tags {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-bio-avatar {
        align-self: center;
    }
    
    .share-section {
        padding: 2rem;
    }
    
    .share-buttons-large {
        flex-direction: column;
    }
    
    .share-btn-large {
        justify-content: center;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-previous,
    .nav-next {
        max-width: 100%;
    }
    
    .nav-next a {
        justify-content: flex-start;
        text-align: left;
    }
    
    .comment-form {
        padding: 1.5rem;
    }
    
    .comment {
        padding: 1rem 0;
    }
    
    .sale-calendar {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .month-item {
        padding: 1rem;
    }
    
    .bulk-category {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
    
    .article-body p,
    .article-body li {
        font-size: 1rem;
    }
    
    .article-body .lead {
        font-size: 1.1rem;
    }
    
    .related-posts h3 {
        font-size: 1.5rem;
    }
    
    .comments-section h3 {
        font-size: 1.5rem;
    }
    
    .action-list li {
        padding: 0.75rem 0.75rem 0.75rem 3rem;
    }
}

/* Print Styles */
@media print {
    .breadcrumb-nav,
    .social-share,
    .share-section,
    .article-navigation,
    .comments-section,
    .sidebar {
        display: none !important;
    }
    
    .article-body {
        color: #000;
    }
    
    .article-body h2,
    .article-body h3,
    .article-body h4 {
        color: #000;
        page-break-after: avoid;
    }
    
    .highlight-box,
    .info-box,
    .article-quote {
        border: 1px solid #000;
        background: transparent !important;
        color: #000 !important;
    }
}