/* Blog Post Specific Styles */
.post-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.post-header-wrapper {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--primary-blue);
}

.post-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-cat-badge {
    background-color: #e3f2fd;
    color: var(--primary-blue);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.post-date {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Post Layout Grid */
.post-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    /* Left Sidebar | Content */
    gap: 3rem;
}

/* Left Sidebar */
.post-sidebar-left {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.author-widget {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.author-widget img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
}

.author-details h4 {
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.author-details span {
    font-size: 0.8rem;
    color: #64748b;
}

.sidebar-topics h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.sidebar-topics ul {
    list-style: none;
}

.sidebar-topics li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.sidebar-topics li:hover {
    color: var(--primary-blue);
}

.sidebar-topics li i {
    color: var(--primary-blue);
    width: 20px;
}

.share-widget {
    margin-top: 3rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

.share-widget span {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.8rem;
}

.share-icons {
    display: flex;
    gap: 1rem;
}

.share-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s;
}

.share-icons a:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Article Content */
.post-featured-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 1.5rem;
}

.highlight-quote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #0f172a;
    margin: 2rem 0;
}

.content-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #0f172a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Specialist Tip Box */
.specialist-tip-box {
    background-color: #e3f2fd;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    margin: 2.5rem 0;
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tip-header i {
    color: var(--primary-blue);
}

.tip-header h4 {
    font-size: 1.1rem;
    color: #0f172a;
}

.specialist-tip-box p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.tip-footer strong {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.bg-icon {
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

/* Benefit List */
.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-list i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* Recommended Products */
.recommended-products {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.rec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.rec-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.rec-header a {
    font-size: 0.9rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.product-category {
    margin-bottom: 3rem;
}

.product-category h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e3f2fd;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.product-card {
    border: 1px solid #f1f5f9;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.prod-img {
    height: 120px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-info h5 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #334155;
}

.prod-info .price {
    display: block;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
}

.btn-buy {
    background-color: var(--primary-blue);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.btn-buy:hover {
    background-color: #1a568b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
}

/* Price Consultation Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    padding: 3rem 2rem;
    border-radius: 24px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f1f5f9;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-header i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #64748b;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-option-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    background: white;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.modal-option-btn:hover {
    border-color: var(--primary-blue);
    background: #f8fafc;
    transform: scale(1.02);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.option-text strong {
    display: block;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.option-text span {
    font-size: 0.85rem;
    color: #64748b;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .post-sidebar-left {
        order: 2;
        /* Move to bottom on mobile */
        position: static;
        margin-top: 3rem;
    }

    .post-main-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .post-container {
        padding: 1.5rem 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 1.25rem;
    }

    .post-main-title {
        font-size: 1.75rem;
    }
}