.trend-detail-page {
    direction: rtl;
    background: #fafaf9;
    font-family: 'Inter', 'Outfit', sans-serif;
    color: #292524;
    overflow-x: hidden;
}
.trend-hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    color: white;
}
.trend-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.trend-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trend-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 10, 9, 0.85) 20%, rgba(12, 10, 9, 0.5) 100%);
    z-index: 2;
}
.trend-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}
.trend-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 24px;
    opacity: 0.85;
}
.trend-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}
.trend-breadcrumb a:hover {
    color: #bca374;
}
.trend-breadcrumb .sep {
    font-size: 10px;
}
.trend-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}
.trend-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #e7e5e4;
    font-weight: 300;
}
.trend-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}
.trend-meta-badge .year {
    color: #bca374;
}
.trend-meta-badge .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.trend-body-section {
    padding: 80px 0;
}
.trend-container-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}
.trend-article {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border: 1px solid #f1f0ee;
}
.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #44403c;
}
.article-content p {
    margin-bottom: 24px;
}
.article-content p.lead {
    font-size: 1.25rem;
    color: #1c1917;
    line-height: 1.8;
}
.article-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c1917;
    margin: 40px 0 20px;
}

.trend-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}
.sidebar-card {
    background: #1c1917;
    color: white;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    text-align: center;
}
.sidebar-logo {
    width: 70px;
    margin: 0 auto 24px;
}
.sidebar-logo img {
    width: 100%;
}
.sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #bca374;
}
.sidebar-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #a8a29e;
    margin-bottom: 30px;
}
.sidebar-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 30px;
}
.sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #bca374;
    color: #1c1917;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
}
.sidebar-btn:hover {
    background: #cbb489;
    transform: translateY(-2px);
}

.trend-gallery-wrapper {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #f1f0ee;
}
.gallery-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.gallery-subtitle {
    font-size: 14px;
    color: #78716c;
    margin-bottom: 24px;
}
.trend-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 1px solid #e7e5e4;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(188, 163, 116, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item-overlay i {
    color: #1c1917;
    font-size: 24px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

.other-trends-section {
    background: #f5f5f4;
    padding: 100px 0;
    border-top: 1px solid #e7e5e4;
}
.other-trends-header {
    text-align: center;
    margin-bottom: 50px;
}
.other-trends-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: 12px;
}
.other-trends-header p {
    font-size: 15px;
    color: #78716c;
}
.other-trends-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.other-trend-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid #e7e5e4;
    transition: all 0.3s;
}
.other-trend-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}
.other-trend-card .img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.other-trend-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.other-trend-card .card-content {
    padding: 24px;
}
.other-trend-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: 12px;
}
.other-trend-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #57534e;
    margin-bottom: 20px;
}
.other-trend-card .card-link {
    color: #bca374;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.other-trend-card .card-link:hover {
    gap: 10px;
}
.other-trend-card .card-tag {
    font-size: 12px;
    color: #78716c;
    background: #f5f5f4;
    padding: 4px 10px;
    border-radius: 6px;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #a8a29e;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}
.lightbox-close:hover {
    color: white;
}
.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content-wrapper img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #a8a29e;
    font-size: 30px;
    font-weight: bold;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover {
    color: white;
}
.lightbox-prev {
    left: -80px;
}
.lightbox-next {
    right: -80px;
}

@media (max-width: 1024px) {
    .trend-container-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .trend-sidebar {
        position: static;
    }
    .lightbox-prev {
        left: 20px;
    }
    .lightbox-next {
        right: 20px;
    }
}
@media (max-width: 768px) {
    .trend-title {
        font-size: 2.5rem;
    }
    .trend-article {
        padding: 30px 20px;
    }
    .trend-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .other-trends-grid {
        grid-template-columns: 1fr;
    }
}