/*
Theme Name: DonShayari
Theme URI: https://www.donshayari.in
Author: DonShayari
Author URI: https://www.donshayari.in
Description: A custom theme for DonShayari.in focused on shayari content and optimized for AdSense
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: donshayari
*/





@font-face {
    font-family: "Verdana";
    src: url("fonts/verdana.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Verdana";
    src: url("fonts/verdana-bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Verdana";
    src: url("fonts/verdana-bold-italic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}


/* General Styling */
body {
    margin: 0;
    font-family: "Verdana", sans-serif;
}
.site-header {
    display: flex;
    flex-direction: column;
}

/* Desktop Header */
.desktop-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    gap: 10px;
}

.desktop-header .logo img {
    width: 246px;
    height: auto;
}
.desktop-menu .desktop-menu-categories {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.desktop-menu .desktop-menu-categories li {
    position: relative;
}

.desktop-menu .desktop-menu-categories li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -17.5px; /* Half of the gap (35px) to center the divider */
    top: 50%;
    transform: translateY(-50%);
    width: 1.5px;
    height: 17px; /* Adjust height as needed */
    background-color: #000; /* Adjust color as needed */
}
.desktop-menu .desktop-menu-categories a {
    font-size: 16px;
    color: black;
    text-decoration: none;
    font-weight: 600;
}

.desktop-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    background-color: white;
}

.desktop-footer .logo {
    width: 135px;
    height: auto;
}

.footer-menu .footer-menu-categories {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.mobile-footer-menu {
    display: none;
}

.desktop-footer .footer-menu-categories li {
    position: relative;
}

.desktop-footer .footer-menu-categories li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -17.5px; /* Half of the gap (35px) to center the divider */
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 17px; /* Adjust height as needed */
    background-color: #000; /* Adjust color as needed */
}
.desktop-footer .footer-menu-categories a {
    font-size: 16px;
    color: black;
    text-decoration: none;
    font-weight: 800;
}

.footer-copyright {
    text-align: center;
    color: black;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
}

.footer-copyright a {
    color: #fcb900;
    text-decoration: none;
}


@media (min-width: 320px) and (max-width: 480px) {
    .desktop-footer .logo {
        width: 250px;
        height: auto;
    }
    .footer-menu {
        display: none;
    } 
    .mobile-footer-menu {
        display: block;
        margin-bottom: 10px;
    }
    .mobile-footer-menu .mobile-footer-menu-categories {
        display: flex;
        flex-direction: column;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 14px;
    }
    .mobile-footer-menu .mobile-footer-menu-categories li {
        text-align: center;
    }
    .mobile-footer-menu .mobile-footer-menu-categories a {
        font-size: 17px;
        color: black;
        text-decoration: none;
        font-weight: 800;
    }
    .footer-copyright {
        font-size: 17px;
    }
}



/* Mobile Header */
.mobile-header {
    display: none;
}
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
}
.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: rgb(246, 203, 5);
    position: relative;
}
.menu-icon::before,
.menu-icon::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: rgb(246, 203, 5);
    position: absolute;
    left: 0;
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    top: 6px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu-open {
    display: block;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu-list li {
    text-align: center;
    padding: 6px 0px;
}

.mobile-menu-list li:hover {
    background-color: rgb(246, 203, 5);
    color: white;
}

.mobile-menu-list li a {
    font-size: 16px;
    color: black;
    text-decoration: none;
    font-weight: 600;
}

@media (min-width: 320px) and (max-width: 480px) {
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: flex;
        justify-content: space-between;
        padding: 10px 20px;
    }
    .mobile-header .logo img {
        width: 240px;
        height: auto;
    }
}






/* Quote Section */
.quote-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    margin-bottom: 40px;
}

.quote-section h2 {
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
}

.daily-quote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
    line-height: 1.6;
}

/* Posts Grid */
.posts-container {
    display: grid;
    grid-template-columns: repeat(3 , minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 220px;
}

.post-card {
    border: 1px solid #696969;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 15px;
}


.post-title a {
    color: #333;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
}

.post-content h3 {
    margin: 0 0 10px;
}

.post-meta {
    font-size: 0.9em;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post-date {
    margin-bottom: 10px;
}

.post-categories a {
    text-decoration: none;
    background-color: #fcb900;
    border-radius: 10px;
    padding: 3px 9px;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;

}

/* Load More Button */
.load-more-container {
    text-align: center;
    padding: 40px 0;
}

#load-more {
    background-color: #fcb900;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
}

#load-more:hover {
    background-color: #fc8600;
}


@media (min-width: 320px) and (max-width: 480px) {
    .posts-container {
        display: grid;
        grid-template-columns: repeat(1 , 310px);
        gap: 30px;
        padding: 20px 25px;
        justify-items: center;
    }
}




.blog-archive {
    padding: 40px 20px;
}

.blog-archive h1 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    width: 700px;
    text-align: center;
    justify-self: center;
}

.blog-archive .posts-container {
    margin-bottom: 40px;
}

/* Pagination */
.navigation.pagination {
    text-align: center;
    margin: 40px 0;
}

.navigation.pagination .nav-links .page-numbers {
    padding: 8px 12px;
    margin: 0 5px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.navigation.pagination .nav-links .page-numbers.current {
    background-color: #fcb900;
    color: white;
    border: none;
}

.navigation.pagination .nav-links .page-numbers.next {
    background-color: #fcb900;
    color: white;
    border: none;
}

.navigation.pagination .nav-links .page-numbers.prev {
    background-color: #fcb900;
    color: white;
    border: none;
}

.nav-links .page-numbers:hover {
    background-color: #f8f9fa;
}



@media (min-width: 320px) and (max-width: 480px) {
    .blog-archive {
        padding: 40px 0;
    }
    
    .blog-archive h1 {
        width: 100%;
    }
    
    .blog-archive .posts-container {
        margin-bottom: 40px;
    }
    
    /* Pagination */
    .navigation.pagination {
        text-align: center;
        margin: 40px 0;
    }
    
    .navigation.pagination .nav-links .page-numbers {
        padding: 8px 12px;
        margin: 0 5px;
        border: 1px solid #ddd;
        text-decoration: none;
        color: #333;
		font-size: 14px;
    }
    
    .navigation.pagination .nav-links .page-numbers.current {
        background-color: #fcb900;
        color: white;
        border: none;
    }
    
    .navigation.pagination .nav-links .page-numbers.next {
        background-color: #fcb900;
        color: white;
        border: none;
    }
    
    .navigation.pagination .nav-links .page-numbers.prev {
        background-color: #fcb900;
        color: white;
        border: none;
    }
    
    .nav-links .page-numbers:hover {
        background-color: #f8f9fa;
    }
}





/* Single Post Layout */
.single-post-container {
    display: grid;
    grid-template-columns: 1fr 300px; /* Main content + Sidebar */
    gap: 40px;
    max-width: 1200px;
    justify-self: center;
    margin: 0 160px;
    padding: 40px 20px;
}

/* Main Content Area */
.single-post-content {
    min-width: 0; /* Prevents content overflow */
    max-width: 900px;
}

.post-header {
    margin-bottom: 30px;
}

.breadcrumbs {
    font-size: 0.9em;
    color: black;
    margin-bottom: 10px;
    width: 600px;
}

.breadcrumbs p {
    display: inline;
}

.breadcrumbs a {
    text-decoration: none;
    color: black;
    display: inline;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs p {
    line-height: 1.5;
}

.single-post .post-header .post-title {
    font-size: 2rem;
    margin: 20px 0 30px 0;
    text-align: center;
    width: 700px;
    justify-self: center;
}

.single-post .post-header .post-meta {
    display: flex;
    color: #666;
    font-size: 0.9em;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    font-size: 16px;
}

.single-post .post-header .post-meta .post-date {
    margin: 0;
}

.post-featured-image {
    margin: 0 0 30px;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.single-post .post-content {
    line-height: 1.2;
    font-size: 16px;
    padding: 0;
}

.single-post .post-content p a {
    color: #fcb900;
}

.single-post .post-content iframe {
    width: 100%;
    height: 935px;
}


/* Image Download Button Styles */
.image-wrapper {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.download-image-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #fcb900;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.download-image-btn:hover {
    background-color: #e5a800;
}

.download-image-btn svg {
    width: 16px;
    height: 16px;
}


.author-bio {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    align-items: start;
}

.author-info {
    color: #333;
}

.author-name {
    margin: 0 0 10px;
    font-size: 1.3em;
}

.author-name a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.author-name a:hover {
    color: #fcb900;
}

.author-description {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #252525;
}

.author-link {
    display: inline-block;
    color: #fcb900;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
}

.author-link:hover {
    text-decoration: underline;
}

/* Sidebar Styling */
.sidebar {
    align-self: start;
    max-width: 350px;
    min-width: 300px;
}

.sidebar-search {
    margin-bottom: 30px;
}

.sidebar-search form div {
    display: flex;
    gap: 0;
    background-color: #a8a6a6;
    border: 1px solid #2b2b2b;
    border-radius: 3px;
    justify-content: space-between;
}

.sidebar-search input[type="text"] {
    padding: 8px;
    width: 70%;
    border: none;
    background-color: #a8a6a6;
    color: black;
    border-radius: 4px;
    font-size: 15.5px;
    font-weight: bold;
}

.sidebar-search input[type="text"]:focus {
    outline: none;
}

.sidebar-search input[type="submit"] {
    padding: 8px 15px;
    background: black;
    width: 30%;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.sidebar-popular-posts {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-popular-posts h3 {
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    font-size: 23px;
    text-decoration: underline;
    width: 100%;
}

.sidebar-post-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.sidebar-post-thumbnail img {
    width: 100px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.sidebar-post-content h4 {
    margin: 0 0 5px;
    font-size: 0.8em;
    line-height: 1.4;
}

.sidebar-post-content a {
    color: #333;
    text-decoration: none;
}

.sidebar-post-content .post-date {
    font-size: 0.7em;
    color: #666;
}

.load-more-sidebar {
    width: 40%;
    padding: 8px;
    background: #fcb900;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
}

.load-more-sidebar:focus {
    background-color: #fcb900;
    outline: none;
}


@media (min-width: 320px) and (max-width: 480px) {
    .single-post-container {
        grid-template-columns: 1fr; /* Main content + Sidebar */
        margin: 0 auto;
    }
    
    .post-header {
        margin-bottom: 30px;
    }
    
    .breadcrumbs {
        font-size: 0.85em;
        width: 100%;
    }
    
    .single-post .post-header .post-title {
        font-size: 1.7rem;
        width: 100%;
    }
    
    .single-post .post-header .post-meta {
        font-size: 0.83em;
        flex-direction: row;
        justify-content: space-around;
        gap: 15px;
        font-weight: bold;
    }
    
    .single-post .post-content {
        line-height: 1.4;
        font-size: 14.5px;
        font-weight: bolder;
    }
    
    
    .author-bio {
        margin: 20px 0;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 12px;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
    }
    
    .author-name {
        margin: 15px 0 30px 0;
        font-size: 1.7em;
        text-align: center;
    }
    
    .author-bio .author-info .author-description {
        font-size: 0.9em;
        padding: 15px;
    }
    
    .author-link {
        margin: 20px auto;
        font-weight: bold;
        text-align: center;
        font-size: 1em;
        width: 100%;
    }
    
    .sidebar-popular-posts h3 {
        text-align: center;
    }
    
    .sidebar-post-content h4 {
        font-size: 0.95em;
    }
    .single-post .post-content iframe {
        width: 100%;
        height: 590px;
    }
	.single-post .post-header .post-meta {
		font-size: 0.8em;
		text-align: center;
	}
}





/* 404 Error Page */
.error-404-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.error-404-header {
    margin-bottom: 40px;
}

.error-404-header h1 {
    font-size: 120px;
    color: #fcb900;
    margin: 0;
    line-height: 1;
}

.error-subtitle {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.error-description {
    font-size: 18px;
    color: #313131;
    max-width: 600px;
    margin: 20px auto;
}

.error-404-search {
    max-width: 500px;
    margin: 0 auto 40px;
}

.error-404-search h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.error-404-search form div {
    display: flex;
    gap: 0;
    background-color: #a8a6a6;
    border: 1px solid #2b2b2b;
    border-radius: 3px;
    justify-content: space-between;
}

.error-404-search input[type="text"] {
    padding: 8px;
    width: 70%;
    border: none;
    background-color: #a8a6a6;
    color: black;
    border-radius: 4px;
    font-size: 15.5px;
    font-weight: bold;
}

.error-404-search input[type="text"]:focus {
    outline: none;
}

.error-404-search input[type="submit"] {
    padding: 8px 15px;
    background: black;
    width: 30%;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.error-404-actions {
    margin-bottom: 50px;
}

.home-button {
    display: inline-block;
    padding: 15px 30px;
    background: #fcb900;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.home-button:hover {
    background: #e28802;
}

.error-404-popular-posts {
    margin-top: 30px;
}

.error-404-popular-posts h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.error-404-popular-posts .posts-grid .posts-container {
    display: grid;
    grid-template-columns: repeat(3 , minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 100px;
}

.error-404-popular-posts .posts-grid .load-more-container #load-more {
    background-color: #fcb900;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 5px;
}

#load-more-404:hover {
    background-color: #e28802;
}




@media (min-width: 320px) and (max-width: 480px) {
    .error-404-popular-posts .posts-grid .posts-container {
        display: grid;
        grid-template-columns: repeat(1 , 290px);
        gap: 30px;
        padding: 20px 15px;
    }
    
    .error-404-popular-posts .posts-grid .load-more-container #load-more {
        background-color: #fcb900;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1.1em;
        font-weight: bold;
        margin-top: 5px;
    }
    
    #load-more-404:hover {
        background-color: #e28802;
    }
}









/* ...existing code... */

/* Blockquote Widget Styling */
blockquote {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin: 30px 0;
    position: relative;
}

blockquote p {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    line-height: 1.6;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.quote-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    justify-content: center;
}

.quote-share-label {
    font-size: 0.6em;
    font-weight: bold;
    color: #666;
    text-transform: uppercase;
}

.quote-share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.share-button:hover {
    transform: scale(1.1);
}

.share-facebook {
    background-color: #1877f2;
}

.share-whatsapp {
    background-color: #25d366;
}

.share-telegram {
    background-color: #0088cc;
}

.share-button svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.copy-button {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 11.5px;
    border: none;
    background: linear-gradient(135deg, #ff8f00 0%, #ff4444 100%);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.copy-button:hover {
    transform: scale(1.05);
}

.copy-button.copied {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

@media (min-width: 320px) and (max-width: 480px) {
	blockquote p {
		font-size: 1.1em;
		font-weight: bold;
	}
}




/* Author Archive Page Design */
.author-archive {
    padding: 40px 20px;
}

.author-hero {
    background: linear-gradient(135deg, #f8c63d 0%, #faab44 100%);
    padding: 60px 20px;
    margin: -40px -20px 40px;
    color: white;
}

.author-bio-header {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.author-bio-header h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.author-description {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.author-description p {
    margin-bottom: 15px;
}

.author-description p:last-child {
    margin-bottom: 0;
}

/* Inherit existing posts-grid styles */
.author-archive .posts-grid {
    margin-top: 40px;
}

.author-archive .posts-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 220px;
}

@media (min-width: 320px) and (max-width: 480px) {
    .author-archive .posts-container {
         display: grid;
         grid-template-columns: repeat(1, 290px);
         gap: 30px;
         padding: 20px 15px;
     }
}




/* Page Template Styles */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-article {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-header {
    margin-bottom: 30px;
    text-align: center;
}

.page-title {
    font-size: 1.9em;
    color: #333;
    margin: 0;
}

.page-content-area {
    font-size: 1em;
    line-height: 1.6;
    color: #444;
}

.page-content-area p {
    margin-bottom: 1.5em;
}

/* Responsive Styles */
@media (min-width: 320px) and (max-width: 480px) {
    .page-content {
        padding: 20px;
    }
    
    .page-article {
        padding: 20px;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .page-content-area {
        font-size: 1em;
    }
}





/* Ad Container Styles */
.mobile-header-ad,
.mobile-footer-ad,
.mobile-content-ad {
    text-align: center;
    margin: 15px auto;
    min-height: 70px;
    overflow: hidden;
    clear: both;
}

.mobile-header-ad {
    max-width: 320px; /* For mobile */
}

.mobile-footer-ad {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    display: none; /* Hide by default */
    min-height: auto; /* Remove minimum height */
}

/* Add collapsible button for footer ad */
.mobile-footer-ad-close {
    position: absolute;
    top: -20px;
    right: 10px;
    background: #fcb900;
    border: none;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
}

/* Only show when ad is present */
.mobile-footer-ad.has-ad {
    display: block;
}








/* Comments Area */
.comments-area {
    margin: 40px 0;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.comments-title {
    font-size: 1.6em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

/* Existing Comments */
.comment-list {
    margin-bottom: 40px;
}

.comment {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.comment .comment {
    margin-left: 50px;
    margin-top: 25px;
    background: #fff;
    border: 1px solid #eee;
}

.comment-body {
    position: relative;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author .avatar {
    border-radius: 50%;
    border: 3px solid #fcb900;
}

.comment-author .fn {
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
    text-decoration: none;
}

.comment-metadata {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.comment-metadata a {
    color: #666;
    text-decoration: none;
}

.comment-content {
    font-size: 1em;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.reply {
    text-align: right;
}

.comment-reply-link {
    display: inline-block;
    padding: 5px 15px;
    background: #fcb900;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.2s;
}

.comment-reply-link:hover {
    background: #e5a800;
}

/* Comment Form */
.comment-respond {
    margin-top: 40px;
}

.comment-reply-title {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.comment-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    gap: 20px;
    justify-self: center;
    background-color: #fff;
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    display: grid;
    gap: 8px;
    justify-self: center;
    width: 85%;
}

.comment-form label {
    font-weight: bold;
    color: #333;
    font-size: 0.95em;
}

.comment-form .required {
    color: #fcb900;
    margin-left: 4px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 94%;
    padding: 12px 3%;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #fcb900;
    box-shadow: 0 0 0 3px rgba(252, 185, 0, 0.1);
}

.comment-form .comment-form-cookies-consent {
    width: 85%;
    justify-self: center;
}

.comment-form .form-submit {
    display: flex;
    justify-content: center;
}

.submit-comment {
    background: #fcb900;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.submit-comment:hover {
    background: #e5a800;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (min-width: 320px) and (max-width: 480px) {
    .comments-area {
        padding: 20px;
        margin: 20px 0;
    }

    .comments-title,
    .comment-reply-title {
        font-size: 1.3em;
    }

    .comment {
        padding: 15px;
    }

    .comment .comment {
        margin-left: 20px;
    }

    .comment-author {
        gap: 10px;
    }

    .comment-author .avatar {
        width: 40px;
        height: 40px;
    }

    .submit-comment {
        width: 100%;
    }
}