/* ============================================================
   X6 HOMEPAGE UPGRADES - STYLES
   ============================================================ */

/* --- GLOBAL --- */
.x6-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.5px;
}

/* ============================================================
   STORIES SECTION — PLAISIO STYLE (Rectangular vertical cards)
   ============================================================ */
.x6-stories-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 28px 24px 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.x6-injected-sections {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.x6-stories-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 0 4px;
}

.x6-stories-viewall {
    margin-left: auto;
    color: #e74c3c;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}
.x6-stories-viewall:hover {
    color: #c0392b;
    text-decoration: none;
}

.x6-stories-badge {
    background: linear-gradient(135deg, #e8422f, #ff6b6b);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.x6-stories-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 4px 8px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: stretch;
}

.x6-stories-carousel::-webkit-scrollbar {
    display: none;
}

.x6-story-item {
    flex: 0 0 calc((100% - 56px) / 5);
    min-width: 200px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.25s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.x6-story-item:hover {
    transform: scale(1.03);
}

/* Hide the ring wrapper — not needed in rectangular style */
.x6-story-ring {
    width: 100%;
    height: 100%;
    padding: 0;
    background: none;
    border-radius: 0;
    animation: none;
}

.x6-story-thumb {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Gradient overlay at bottom for title readability */
.x6-story-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    pointer-events: none;
}

/* X6 badge on top-left */
.x6-story-item::before {
    content: 'X6';
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(232,66,47,0.9);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.x6-story-play {
    color: rgba(255,255,255,0.95);
    font-size: 36px;
    opacity: 0;
    transition: opacity 0.2s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    z-index: 2;
    position: relative;
}

.x6-story-item:hover .x6-story-play {
    opacity: 1;
}

.x6-story-title {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
    z-index: 2;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
    max-width: none;
    text-align: left;
    white-space: normal;
    letter-spacing: -0.2px;
}

/* Video Modal */
.x6-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.x6-video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.x6-video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
}

.x6-video-modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 400px;
    max-height: 85vh;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.x6-video-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.x6-video-modal-body {
    width: 100%;
    min-height: 600px;
}

.x6-video-modal-body iframe {
    width: 100%;
    height: 700px;
    max-height: 85vh;
    border: none;
}

/* ============================================================
   BLOG INSPIRE SECTION
   ============================================================ */
.x6-inspire-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px 20px;
}

.x6-inspire-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.x6-inspire-more {
    color: #e74c3c;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.x6-inspire-more:hover {
    color: #c0392b;
}

.x6-inspire-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.x6-inspire-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.x6-inspire-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.x6-inspire-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.x6-inspire-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.x6-inspire-card--featured .x6-inspire-card-image {
    height: 260px;
}

.x6-inspire-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s;
}

.x6-inspire-card:hover .x6-inspire-card-image::after {
    opacity: 1;
}

.x6-inspire-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.x6-inspire-card-body {
    padding: 18px 20px;
}

.x6-inspire-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.x6-inspire-card-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.x6-inspire-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.x6-inspire-card-author {
    font-weight: 600;
    color: #666;
}

/* ============================================================
   WOOCOMMERCE PRODUCT CARDS - PLAISIO STYLE
   ============================================================ */
.x6-product-card-inner {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.x6-product-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.x6-product-image-wrap {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.x6-product-image-wrap img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

.x6-product-card-inner:hover .x6-product-image-wrap img {
    transform: scale(1.08);
}

.x6-sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #e74c3c, #ff4757);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(231,76,60,0.3);
}

/* Hide default WooCommerce sale badge */
.x6-product-card .onsale {
    display: none !important;
}

/* Product title */
.x6-product-card .woocommerce-loop-product__title,
.x6-product-card h2 {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1a1a2e !important;
    padding: 14px 16px 6px !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price */
.x6-product-card .price {
    padding: 0 16px 8px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #e74c3c !important;
}

.x6-product-card .price del {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #999 !important;
}

.x6-product-card .price ins {
    text-decoration: none !important;
    font-weight: 800 !important;
}

/* Add to cart button */
.x6-product-card .button,
.x6-product-card .add_to_cart_button {
    display: block !important;
    width: calc(100% - 32px) !important;
    margin: auto 16px 16px !important;
    padding: 10px 16px !important;
    background: linear-gradient(135deg, #1a1a2e, #16213e) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-transform: none !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    opacity: 0;
    transform: translateY(10px);
}

.x6-product-card-inner:hover .button,
.x6-product-card-inner:hover .add_to_cart_button {
    opacity: 1;
    transform: translateY(0);
}

.x6-product-card .button:hover,
.x6-product-card .add_to_cart_button:hover {
    background: linear-gradient(135deg, #e74c3c, #ff4757) !important;
}

/* Product actions (wishlist) */
.x6-product-actions {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.x6-wishlist-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.x6-wishlist-icon:hover {
    background: #e74c3c;
    color: #fff;
}

/* WooCommerce shop grid improvements */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 24px !important;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

/* ============================================================
   BLOG GRID — PLAISIO "Δες, Διάβασε & Εμπνεύσου" STYLE
   ============================================================ */
.x6-bloggrid {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.x6-bloggrid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 4px;
}

.x6-bloggrid-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.5px;
}

.x6-bloggrid-more {
    color: #e8422f;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.x6-bloggrid-more:hover {
    opacity: 0.7;
    text-decoration: none;
    color: #e8422f;
}

.x6-bloggrid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.x6-bloggrid-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
}
.x6-bloggrid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.13);
    text-decoration: none;
    color: inherit;
}

.x6-bloggrid-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
    position: relative;
}
.x6-bloggrid-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.15));
}

.x6-bloggrid-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 14px;
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 1;
}

.x6-bloggrid-body {
    padding: 18px 20px 20px;
}

.x6-bloggrid-card-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.x6-bloggrid-author {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

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

/* --- TABLET --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .x6-inspire-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .x6-story-item {
        flex: 0 0 calc((100% - 42px) / 4);
        min-width: 170px;
        height: 300px;
    }
    .x6-stories-section {
        margin: 20px 10px;
        padding: 20px 16px;
    }
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }
    .x6-product-card .button,
    .x6-product-card .add_to_cart_button {
        opacity: 1;
        transform: translateY(0);
    }
    .x6-bloggrid-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .x6-bloggrid-img { height: 180px; }
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .x6-section-title { font-size: 20px; }

    .x6-stories-section {
        margin: 15px 0;
        padding: 16px 12px 20px;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }
    .x6-stories-header { margin-bottom: 14px; }
    .x6-stories-carousel { gap: 10px; }
    .x6-story-item {
        flex: 0 0 42%;
        min-width: 145px;
        height: 240px;
        border-radius: 12px;
    }
    .x6-story-title { font-size: 11px; bottom: 8px; left: 8px; right: 8px; }
    .x6-story-item::before { font-size: 9px; padding: 2px 6px; top: 6px; left: 6px; }

    .x6-inspire-grid { grid-template-columns: 1fr; gap: 16px; }
    .x6-inspire-card--featured .x6-inspire-card-image { height: 180px; }
    .x6-inspire-card-image { height: 160px; }
    .x6-inspire-section { padding: 20px 12px; }
    .x6-inspire-header { flex-direction: column; align-items: flex-start; gap: 8px; }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .x6-product-card .button,
    .x6-product-card .add_to_cart_button {
        opacity: 1;
        transform: translateY(0);
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
    .x6-product-card .woocommerce-loop-product__title,
    .x6-product-card h2 { font-size: 13px !important; padding: 10px 10px 4px !important; }
    .x6-product-card .price { padding: 0 10px 6px !important; font-size: 15px !important; }
    .x6-sale-badge { font-size: 11px; padding: 3px 8px; }

    .x6-injected-sections { padding: 0; }

    .x6-bloggrid { padding: 0 12px; margin: 20px auto; }
    .x6-bloggrid-cards { grid-template-columns: 1fr; gap: 14px; }
    .x6-bloggrid-img { height: 180px; }
    .x6-bloggrid-title { font-size: 20px; }
    .x6-bloggrid-header { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* --- SMALL MOBILE --- */
@media (max-width: 400px) {
    .x6-story-item { flex: 0 0 48%; height: 210px; }
    .woocommerce ul.products { grid-template-columns: 1fr !important; }
    .x6-section-title { font-size: 18px; }
}

/* ============================================================
   FACEBOOK FEED SECTION
   ============================================================ */
.x6-facebook-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.x6-facebook-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.x6-facebook-follow {
    color: #1877f2;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.x6-facebook-follow:hover {
    color: #0d5fc7;
    text-decoration: none;
}

.x6-facebook-embed {
    display: flex;
    justify-content: center;
    min-height: 500px;
}

.x6-facebook-embed .fb-page {
    width: 100%;
    max-width: 500px;
}

@media (max-width: 768px) {
    .x6-facebook-section {
        margin: 20px 10px;
        padding: 20px 15px;
    }

    .x6-facebook-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ============================================================
   SINGLE BLOG POST - PLAISIO STYLE
   ============================================================ */

/* Blog Header */
.x6-blog-header {
    background: #1a1a2e;
    padding: 0;
    border-bottom: 3px solid #e74c3c;
}

.x6-blog-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 40px;
}

.x6-blog-logo {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.x6-blog-logo:hover {
    color: #fff;
    text-decoration: none;
}

.x6-blog-dot {
    color: #e74c3c;
    font-size: 28px;
}

.x6-blog-nav {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.x6-blog-nav::-webkit-scrollbar {
    display: none;
}

.x6-blog-nav-item {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.2s;
}

.x6-blog-nav-item:hover,
.x6-blog-nav-item.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
    text-decoration: none;
}

/* Article Layout */
.x6-blog-article {
    background: #f8f8f8;
    min-height: 100vh;
    padding: 40px 20px;
}

.x6-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

.x6-blog-main {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Category */
.x6-blog-category-row {
    margin-bottom: 16px;
}

.x6-blog-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Title */
.x6-blog-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin: 0 0 24px;
    letter-spacing: -0.5px;
}

/* Author & Meta */
.x6-blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.x6-blog-meta-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.x6-blog-author {
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
}

.x6-blog-date {
    font-size: 13px;
    color: #888;
}

.x6-blog-share {
    display: flex;
    gap: 8px;
}

.x6-share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}

.x6-share-btn:hover {
    text-decoration: none;
}

.x6-share-fb:hover {
    background: #1877f2;
    color: #fff;
}

.x6-share-tw:hover {
    background: #1a1a2e;
    color: #fff;
}

.x6-share-li:hover {
    background: #0077b5;
    color: #fff;
}

/* Hero Image */
.x6-blog-hero-image {
    margin: 0 -40px 30px;
    overflow: hidden;
}

.x6-blog-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.x6-blog-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.x6-blog-content p {
    margin-bottom: 20px;
}

.x6-blog-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 40px 0 16px;
}

.x6-blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 30px 0 12px;
}

.x6-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.x6-blog-content blockquote {
    border-left: 4px solid #e74c3c;
    padding: 16px 24px;
    margin: 24px 0;
    background: #f8f8f8;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #555;
}

/* Tags */
.x6-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.x6-blog-tag {
    padding: 6px 16px;
    background: #f0f0f0;
    border-radius: 20px;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.x6-blog-tag:hover {
    background: #1a1a2e;
    color: #fff;
    text-decoration: none;
}

/* Share Bottom */
.x6-blog-share-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.x6-blog-share-bottom span {
    font-weight: 600;
    color: #888;
    font-size: 14px;
}

/* Sidebar */
.x6-blog-sidebar {
    position: relative;
}

.x6-blog-sidebar-sticky {
    position: sticky;
    top: 20px;
}

.x6-sidebar-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e74c3c;
}

.x6-trending-card {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    transition: transform 0.2s;
}

.x6-trending-card:hover {
    text-decoration: none;
    transform: translateX(4px);
}

.x6-trending-image {
    width: 90px;
    height: 70px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
    flex-shrink: 0;
}

.x6-trending-body {
    flex: 1;
    min-width: 0;
}

.x6-trending-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #e74c3c;
    letter-spacing: 0.5px;
}

.x6-trending-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.x6-trending-excerpt {
    font-size: 12px;
    color: #888;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .x6-blog-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .x6-blog-main {
        padding: 24px;
    }

    .x6-blog-hero-image {
        margin: 0 -24px 24px;
    }

    .x6-blog-title {
        font-size: 26px;
    }

    .x6-blog-meta {
        flex-wrap: wrap;
    }

    .x6-blog-share {
        width: 100%;
        margin-top: 8px;
    }

    .x6-blog-header-inner {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .x6-blog-content {
        font-size: 16px;
    }

    .x6-blog-sidebar-sticky {
        position: static;
    }
}
