/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fdfbf7;
    font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Outfit', sans-serif;
    line-height: 1.8;
    color: #3e2723;
}

/* ==================== ARTICLE CONTAINER ==================== */
.article-container {
    max-width: 800px;
    margin: auto;
}

/* ==================== HEADER ==================== */
.article-header h1 {
    font-size: 32px;
    color: #3e2723;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    font-size: 14px;
    color: #7f5539;
    margin-bottom: 25px;
    border-bottom: 1px solid #ebdccb;
    padding-bottom: 15px;
}

/* ==================== TAGLINE ==================== */
.tagline {
    text-align: center;
    font-style: italic;
    color: #558b2f;
    font-size: 1.05em;
    margin-bottom: 30px;
}

/* ==================== CONTENT ==================== */
.article-content h2 {
    font-size: 24px;
    color: #6aa121;
    margin: 30px 0 15px 0;
    border-left: 4px solid #ffae42;
    padding-left: 12px;
}

.article-content h3 {
    font-size: 20px;
    color: #5d4037;
    margin: 25px 0 12px 0;
    border-left: 3px solid #6aa121;
    padding-left: 10px;
}

.article-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a3728;
}

.article-content ul,
.article-content ol {
    margin: 15px 0 18px 25px;
    color: #4a3728;
    font-size: 17px;
}

.article-content li {
    margin-bottom: 8px;
}

/* ==================== VS TABLE (Toothpaste vs Datun) ==================== */
.vs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.vs-table th,
.vs-table td {
    border: 1px solid #c5e1a5;
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.vs-table th {
    background: #33691e;
    color: white;
    text-align: center;
}

/* ==================== HIGHLIGHT BOX ==================== */
.highlight-box {
    background: #f5efe0;
    border-left: 5px solid #8b5e34;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #4a3728;
}

/* Hisab Box (Toothpaste article) */
.highlight-box.hisab-box {
    background: #fff3e0;
    border: 2px dashed #ff9800;
    border-left: 5px solid #ff9800;
    font-style: normal;
}

/* Warning Box */
.highlight-box.warning-box {
    background: #fff9c4;
    border-left: 5px solid #fbc02d;
    font-style: normal;
}

/* Nuskha Box */
.highlight-box.nuskha-box {
    background: #e8f5e9;
    border-left: 5px solid #43a047;
    font-style: normal;
}

/* ==================== MEDICAL DISCLAIMER ==================== */
.medical-disclaimer {
    background: #f5f5f5;
    border-left: 5px solid #ff9800;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 5px;
    font-size: 0.95em;
    color: #555;
}

/* ==================== DISCLAIMER TEXT ==================== */
.disclaimer-text {
    font-size: 13px;
    color: #9e9e9e;
    text-align: center;
    margin-top: 40px;
    line-height: 1.6;
    background: #fff9f0;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #e0d4c3;
}

/* ==================== CTA BUTTON ==================== */
.btn-container {
    text-align: center;
    margin: 40px auto 20px auto;
    padding: 0 15px;
}

/* Generic CTA Box */
.cta-box {
    background: #e8f5e9;
    border: 2px solid #2e7d32;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
}

.cta-box h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.cta-box p {
    color: #4a3728;
    margin-bottom: 15px;
}

.cta-box .cta-note {
    font-size: 13px;
    margin-top: 15px;
    color: #6b7280;
}

.desi-link-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b5e34 0%, #6aa121 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 12px;
    border: 2px solid #5d4037;
    box-shadow: 0 6px 0 #5d4037, 0 8px 20px rgba(93, 64, 55, 0.3);
    transition: all 0.2s ease;
    max-width: 700px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.desi-link-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #5d4037, 0 6px 15px rgba(93, 64, 55, 0.4);
}

.desi-link-btn:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #5d4037;
}

.btn-icon,
.btn-arrow {
    font-size: 20px;
    vertical-align: middle;
}

.btn-icon {
    margin-right: 8px;
}

.btn-arrow {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.desi-link-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Small CTA Button */
.desi-link-btn.btn-sm {
    font-size: 14px;
    padding: 12px 25px;
}

/* ==================== SHARE BUTTON ==================== */
.share-btn {
    display: block;
    margin: 30px auto;
    background: #6aa121;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.2s ease;
}

.share-btn:hover {
    background: #5a8a1a;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 60px;
    padding: 35px 20px 25px;
    background: #f7f3eb;
    color: #4b5563;
    text-align: center;
    border-top: 1px solid #e5ddd0;
    font-family: 'Outfit', sans-serif;
}

/* Footer Main Links */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 22px;
}

.footer-links a {
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #b45309;
    text-decoration: underline;
}

/* Footer Categories */
.footer-categories {
    max-width: 900px;
    margin: 0 auto 22px;
    padding: 15px 12px;
    font-size: 14px;
    line-height: 2;
    border-top: 1px solid #e5ddd0;
    border-bottom: 1px solid #e5ddd0;
}

.footer-categories a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-categories a:hover {
    color: #b45309;
    text-decoration: underline;
}

/* Copyright */
.footer p {
    margin: 8px auto;
    font-size: 13px;
    line-height: 1.7;
    color: #6b7280;
}

.footer p strong {
    color: #374151;
}

/* Description */
.footer .copy {
    max-width: 850px;
    margin: 12px auto 0;
    font-size: 12px;
    line-height: 1.8;
    color: #6b7280;
}

/* ==================== RESPECT BOX ==================== */
.respect-box {
    background: #fff3e0;
    border: 2px solid #ffcc80;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
    font-weight: bold;
    color: #4a3728;
}

/* ==================== TAU KA HISAB ==================== */
.tau-ka-hisab {
    background: #fbe9e7;
    border: 2px dashed #ff7043;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    color: #4a3728;
}

.tau-ka-hisab h3 {
    color: #d84315;
    margin-bottom: 12px;
}

/* ==================== HIGHLIGHT SPAN ==================== */
.highlight {
    background: #fff9c4;
    padding: 2px 6px;
    border-radius: 4px;
}

/* ==================== NUSKHA BOX (Pink) ==================== */
.highlight-box.nuskha-box-pink {
    background: #fce4ec;
    border-left: 5px solid #ec407a;
    font-style: normal;
}

/* ==================== CTA BOX (Purple) ==================== */
.cta-box.cta-purple {
    background: #f3e5f5;
    border: 2px solid #ab47bc;
}

.cta-box.cta-purple h3 {
    color: #6a1b9a;
}

.cta-box.cta-purple .desi-link-btn {
    background: linear-gradient(135deg, #8e24aa 0%, #ab47bc 100%);
    border: 2px solid #6a1b9a;
    box-shadow: 0 6px 0 #6a1b9a, 0 8px 20px rgba(106, 27, 154, 0.3);
}

/* ==================== ARTICLE BUTTON BOX ==================== */
.article-btn-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
}

.article-btn-box a {
    color: #7f5539;
    font-weight: bold;
    text-decoration: none;
}

.article-btn-box a:hover {
    text-decoration: underline;
}

/* ==================== AUTHOR TAG ==================== */
.author-tag {
    text-align: center;
    margin-top: 40px;
    font-weight: bold;
    color: #4a3728;
}

/* ==================== WARNING BOX ==================== */
.warning-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 18px;
    margin: 20px 0;
    border-radius: 8px;
    color: #4a3728;
}

/* ==================== INTRO BOX ==================== */
.intro-box {
    background: #f5efe0;
    border: 2px solid #c4a882;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    color: #4a3728;
}

/* ==================== STORY BOX ==================== */
.story-box {
    background: #e8f5e9;
    border-left: 5px solid #4caf50;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    font-style: italic;
    color: #4a3728;
}

/* ==================== ARTICLE IMAGE ==================== */
/* ==================== ARTICLE IMAGE ==================== */
.article-image {
    display: none;  /* पूरी इमेज गायब */
}

/* ==================== CTA BOX (Green Gradient - for Gym article) ==================== */
.cta-box.cta-green-gradient {
    background: linear-gradient(135deg, #6aa121, #8b5e34);
    border: none;
    color: white;
}

.cta-box.cta-green-gradient h3 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 1.4rem;
}

.cta-box.cta-green-gradient p {
    color: #f5efe0;
    margin-bottom: 15px;
}

.cta-box.cta-green-gradient .desi-link-btn {
    background: white;
    color: #8b5e34;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-box.cta-green-gradient .desi-link-btn:hover {
    background: #f5efe0;
}

.cta-box.cta-green-gradient .cta-note {
    color: #f5efe0;
}

/* ==================== WARNING BOX (Red) ==================== */
.warning-box,
.warning {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 18px;
    margin: 20px 0;
    border-radius: 8px;
    color: #4a3728;
}

/* Red variant for mobile article */
.warning-box.warning-red,
.warning.warning-red {
    background: #ffebee;
    border-left: 5px solid #f44336;
}

/* ==================== GANG WAR BOXES (Pizza vs Dal-Baati) ==================== */
.gang-war {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.gang {
    width: 45%;
    padding: 15px;
    border-radius: 10px;
}

.pizza-gang {
    background: #ffebee;
    border: 2px solid #f44336;
}

.baati-gang {
    background: #e8f5e9;
    border: 2px solid #4caf50;
}

/* ==================== VS TABLE COLORED ROWS ==================== */
.vs-table td.pizza {
    background: #ffebee;
}

.vs-table td.baati {
    background: #e8f5e9;
}

/* ==================== NUSKHA BUTTON ==================== */
.nuskha-btn {
    display: inline-block;
    background: #8b5e34;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin: 15px 0;
    transition: background 0.2s ease;
}

.nuskha-btn:hover {
    background: #6aa121;
}

/* ==================== INTRO BOX (Green Variant) ==================== */
.intro-box.intro-green {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    color: #4a3728;
}

/* ==================== TIP BOX ==================== */
.tip-box {
    background: #f1f8e9;
    border-left: 4px solid #8bc34a;
    padding: 16px;
    margin: 15px 0;
    border-radius: 6px;
    color: #4a3728;
}

/* ==================== META INFO ==================== */
.meta-info {
    text-align: center;
    color: #6d4c41;
    font-size: 0.95em;
    margin-top: 10px;
    margin-bottom: 25px;
}

/* ==================== DISCLAIMER TEXT (Yellow Variant) ==================== */
.disclaimer-text.disclaimer-yellow {
    background: #fff3cd;
    border: 1px solid #ffc107;
}

/* ==================== INTRO BOX (Yellow Variant) ==================== */
.intro-box.intro-yellow,
.intro {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    color: #4a3728;
}

/* ==================== NUSKHA CARD ==================== */
.nuskha-card {
    background: #ffffff;
    border: 1px solid #e0d4c3;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    color: #4a3728;
}

.nuskha-card h3 {
    margin-top: 0;
    color: #4a3728;
    font-size: 1.4em;
    border-left: none;
    padding-left: 0;
}

.nuskha-card ul {
    padding-left: 20px;
}

.nuskha-card li {
    margin-bottom: 10px;
}

/* ==================== TAU TIP ==================== */
.tau-tip {
    background: #e8f5e9;
    border-left: 5px solid #4caf50;
    padding: 15px;
    margin-top: 15px;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    color: #4a3728;
}

/* ==================== DISCLAIMER TEXT (Brown Border Variant) ==================== */
.disclaimer-text.disclaimer-brown {
    border-top: 3px solid #8b5e34;
    background: #fff9f0;
    border-radius: 10px;
    color: #5d4037;
}

/* ==================== PATCH TEST BOX ==================== */
.patch-test {
    background: #fff3e0;
    border: 2px solid #ff9800;
    padding: 18px;
    border-radius: 10px;
    margin: 20px 0;
    color: #4a3728;
}

/* ==================== WARNING MID (Red Border) ==================== */
.warning-mid {
    background: #ffebee;
    border: 2px solid #e57373;
    padding: 18px;
    border-radius: 10px;
    margin: 30px 0;
    color: #4a3728;
}

/* ==================== DISCLAIMER LAST (Brown Top Border) ==================== */
.disclaimer-last {
    font-size: 13px;
    color: #6d4c41;
    text-align: center;
    margin-top: 35px;
    line-height: 1.6;
    border-top: 2px solid #a1887f;
    padding: 20px;
    background: #efebe9;
    border-radius: 8px;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .article-container {
        margin: 20px 10px;
        padding: 15px;
    }

    .article-header h1 {
        font-size: 26px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .article-content h3 {
        font-size: 18px;
    }

    .article-content p {
        font-size: 16px;
    }

    .desi-link-btn {
        font-size: 14px;
        padding: 15px 20px;
    }
    
    .vs-table th,
    .vs-table td {
        padding: 8px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .footer {
        margin-top: 40px;
        padding: 30px 15px 22px;
    }

    .footer-links {
        gap: 7px 14px;
        margin-bottom: 18px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-categories {
        padding: 13px 8px;
        font-size: 13px;
        line-height: 2.2;
    }

    .footer p {
        font-size: 12px;
        line-height: 1.7;
    }

    .footer .copy {
        font-size: 11.5px;
        line-height: 1.8;
    }
}