/* ===== VARIABLES ===== */
:root {
    --crimson: #9E1B32;
    --gold: #D4AF37;
    --ivory: #F8F5F0;
    --charcoal: #333333;
    --teal: #2A9D8F;
    --red: #E63946;
    --purple: #9B5DE5;
    --blue: #00BBF9;
    --pink: #F15BB5;
    --gold-accent: #FFB627;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    color: var(--charcoal);
    background: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== FIXED HEADER - MOBILE RESPONSIVE ===== */
.womenfirst-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: var(--ivory);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.main-header {
    padding: 12px 0;
    border-bottom: 2px solid var(--gold);
    background: var(--ivory);
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== LOGO + SITE TITLE - PROPERLY ALIGNED ===== */
.logo-site-title {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-site-title .home-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-site-title .home-link:hover {
    opacity: 0.8;
}

.logo-site-title .custom-logo {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-site-title .site-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--crimson);
    white-space: nowrap;
    line-height: 1;
}

/* ===== SHOP BUTTON ===== */
.header-actions {
    flex-shrink: 0;
}

.shop-button {
    background: var(--crimson);
    color: white !important;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.shop-button:hover {
    background: #7A0A1C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(158, 27, 50, 0.3);
}

/* ===== SUB HEADER - CATEGORY NAVIGATION ===== */
.sub-header {
    background: var(--charcoal);
    padding: 10px 0;
    width: 100%;
}

.sub-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-navigation {
    display: flex;
    justify-content: center;
    width: 100%;
}

.category-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-nav li {
    margin: 0;
}

.category-btn,
.category-nav a {
    color: white;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.category-btn:hover,
.category-nav a:hover {
    background: var(--crimson);
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--crimson) 0%, #7A0A1C 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 120px;
    padding: 40px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-family: 'Lora', serif;
    opacity: 0.95;
}

.cta-button {
    background: var(--gold);
    color: var(--charcoal);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #b8931c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ===== FILTER SECTION WITH SEARCH ===== */
.filter-section {
    padding: 30px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-search-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--crimson);
    color: var(--crimson);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--crimson);
    color: white;
    transform: translateY(-1px);
}

/* ===== SEARCH SECTION - VISIBLE & STYLED ===== */
.filter-search {
    width: 100%;
    max-width: 500px;
}

.filter-search-form {
    display: flex;
    gap: 0;
    width: 100%;
    background: white;
    border: 2px solid var(--crimson);
    border-radius: 25px;
    padding: 4px;
    box-shadow: 0 3px 15px rgba(158, 27, 50, 0.1);
    overflow: hidden;
}

.filter-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    color: var(--charcoal);
}

.filter-search-input::placeholder {
    color: #999;
}

.filter-search-btn {
    background: var(--crimson);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.filter-search-btn:hover {
    background: #7A0A1C;
    transform: scale(1.05);
}

.filter-search-btn svg {
    width: 18px;
    height: 18px;
}

/* ===== BLOG GRID ===== */
.blog-grid-section {
    padding: 50px 0;
    background: var(--ivory);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-grid-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.post-thumbnail {
    overflow: hidden;
    height: 200px;
}

.post-thumbnail a {
    display: block;
    height: 100%;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-content h3,
.post-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.post-content h3 a,
.post-content h2 a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h3 a:hover,
.post-content h2 a:hover {
    color: var(--crimson);
}

.post-content p,
.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.post-tags {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.tag-badge:hover {
    transform: translateY(-1px);
}

.read-more {
    color: var(--crimson);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.read-more:hover {
    color: #7A0A1C;
    transform: translateX(5px);
}

.load-more-btn {
    background: linear-gradient(135deg, var(--crimson) 0%, #7A0A1C 100%);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.load-more-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(154, 27, 50, 0.3);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--crimson) 0%, #7A0A1C 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.newsletter-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-form form,
.simple-newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"],
.simple-newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.newsletter-form button,
.simple-newsletter-form button {
    padding: 14px 30px;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    font-size: 14px;
}

.newsletter-form button:hover,
.simple-newsletter-form button:hover {
    background: #b8931c;
    transform: translateY(-2px);
}

/* ===== FOOTER - COMPLETELY VISIBLE & STYLED ===== */
.womenfirst-footer {
    background: var(--charcoal);
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-about .about-us-link {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border: 2px solid var(--gold);
    border-radius: 20px;
}

.footer-about .about-us-link:hover {
    color: #b8931c;
    border-color: #b8931c;
    transform: translateY(-2px);
}

.social-connect h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--crimson);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* ===== UTILITY NAVIGATION ===== */
.utility-nav {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.utility-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.utility-nav li {
    margin: 0;
}

.utility-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 5px 8px;
}

.utility-nav a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ===== GET FREE RESOURCES BUTTON - VISIBLE & STYLED ===== */
.free-resources-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.get-free-resources {
    background: var(--crimson);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(154, 27, 50, 0.5);
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.get-free-resources:hover {
    background: #7A0A1C;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(154, 27, 50, 0.6);
}

.resources-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-content {
    background: white;
    padding: 35px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--crimson);
}

.modal-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    margin-bottom: 15px;
    font-size: 1.7rem;
}

.modal-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

#resources-form input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
    outline: none;
}

#resources-form input:focus {
    border-color: var(--crimson);
}

.submit-btn {
    width: 100%;
    background: var(--crimson);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #7A0A1C;
    transform: translateY(-2px);
}

.success-message {
    background: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

/* ===== CATEGORY ARCHIVE PAGES ===== */
.category-archive {
    padding: 40px 0;
    margin-top: 120px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.category-color-bar {
    height: 4px;
    width: 100px;
    margin: 0 auto 20px;
    border-radius: 10px;
}

/* Category-specific color bars */
.category-wellness-health .category-color-bar { background: var(--teal); }
.category-fitness-body .category-color-bar { background: var(--red); }
.category-beauty-skincare .category-color-bar { background: var(--purple); }
.category-mind-soul .category-color-bar { background: var(--blue); }
.category-lifestyle-relationships .category-color-bar { background: var(--pink); }
.category-money-career .category-color-bar { background: var(--gold-accent); }

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.category-subtags {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.subtags-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.subtags-container h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.subtag-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.subtag {
    padding: 8px 16px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease;
}

.subtag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== SINGLE POST STYLES ===== */
.single-post-main {
    padding: 40px 0;
    margin-top: 120px;
}

.single-post {
    max-width: 800px;
    margin: 0 auto;
}

.reading-progress {
    position: fixed;
    top: 104px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0,0,0,0.05);
    z-index: 999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--crimson), var(--gold));
    width: 0%;
    transition: width 0.1s ease;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.featured-image {
    margin-bottom: 30px;
}

.featured-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.post-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-meta {
    color: #666;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.post-meta span {
    background: var(--ivory);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.single-post .post-content {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.single-post .post-content h2,
.single-post .post-content h3,
.single-post .post-content h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--crimson);
    margin: 30px 0 15px;
}

.single-post .post-content p {
    margin-bottom: 1.5em;
}

/* ===== MOBILE RESPONSIVENESS - COMPLETE FIX ===== */
@media (max-width: 768px) {
    /* Header Mobile Fix */
    .womenfirst-header {
        position: relative;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 15px;
        gap: 10px;
    }
    
    .logo-site-title .home-link {
        gap: 8px;
    }
    
    .logo-site-title .custom-logo {
        height: 35px;
    }
    
    .logo-site-title .site-title {
        font-size: 16px;
    }
    
    .shop-button {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Category Navigation Mobile */
    .sub-header {
        padding: 8px 0;
    }
    
    .sub-header-container {
        padding: 0 10px;
        overflow-x: auto;
    }
    
    .category-nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 5px;
    }
    
    .category-btn,
    .category-nav a {
        white-space: nowrap;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: 50vh;
        margin-top: 0;
        padding: 30px 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Filter Section Mobile */
    .filter-section {
        padding: 20px 0;
    }
    
    .filter-search-wrapper {
        gap: 15px;
        padding: 0 15px;
    }
    
    .category-filters {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .filter-search {
        max-width: 100%;
    }
    
    /* Blog Grid Mobile */
    .blog-grid-section {
        padding: 30px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .post-thumbnail {
        height: 180px;
    }
    
    .post-content {
        padding: 15px;
    }
    
    /* Category Pages Mobile */
    .category-archive {
        margin-top: 0;
        padding: 20px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .category-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .category-subtags {
        margin: 0 15px 20px;
        padding: 20px;
    }
    
    /* Single Post Mobile */
    .single-post-main {
        margin-top: 0;
        padding: 20px 0;
    }
    
    .post-title {
        font-size: 1.6rem;
        padding: 0 15px;
    }
    
    .post-meta {
        gap: 8px;
    }
    
    .post-meta span {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .featured-image img {
        height: 250px;
        border-radius: 0;
    }
    
    .reading-progress {
        top: 0;
    }
    
    /* Footer Mobile */
    .womenfirst-footer {
        margin-top: 40px;
        padding: 30px 0 15px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }
    
    .utility-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    /* Get Free Resources Button Mobile */
    .free-resources-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .get-free-resources {
        padding: 12px 18px;
        font-size: 12px;
    }
    
    .modal-content {
        padding: 25px 20px;
        margin: 20px;
    }
    
    /* Newsletter Mobile */
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-section h2 {
        font-size: 1.6rem;
    }
    
    .newsletter-form form,
    .simple-newsletter-form {
        flex-direction: column;
        width: 100%;
        padding: 0 15px;
    }
    
    .newsletter-form input[type="email"],
    .simple-newsletter-form input[type="email"] {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .post-title {
        font-size: 1.4rem;
    }
    
    .logo-site-title .site-title {
        font-size: 14px;
    }
    
    .logo-site-title .custom-logo {
        height: 30px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    text-align: center;
    padding: 30px;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--crimson);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ACCESSIBILITY ===== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ===== PRINT STYLES ===== */
@media print {
    .womenfirst-header,
    .sub-header,
    .filter-section,
    .newsletter-section,
    .womenfirst-footer,
    .free-resources-widget,
    .social-sharing,
    .load-more-btn {
        display: none;
    }
    
    .hero-section,
    .category-archive,
    .single-post-main {
        margin-top: 0;
    }
    
    body {
        background: white;
    }
}


/* ===== HERO TAGLINE STYLING ===== */
.hero-tagline {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 30px;
    opacity: 0.95;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-tagline {
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* ===== END OF STYLESHEET ===== */