/* Modern Wellness Website - Clean Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    background: #fafafa;
    color: #2c3e50;
    padding-top: 80px;
    overflow-x: hidden;
}

/* Mobile body padding adjustment */
@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 130px;
    }
}

/* Header Styles */
#main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.95);
    color: #2D5025;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(108, 151, 76, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-sizing: border-box;
}

#main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.logo-container img#logo {
    height: 55px;
    width: auto;
    transition: transform 0.2s ease;
}

.logo-container img#logo:hover {
    transform: scale(1.05);
}

.main-nav ul {
    padding: 0;
    list-style: none;
    display: flex;
    margin: 0;
    gap: 30px;
}

.main-nav ul li a {
    color: #2D5025;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #6C974C;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #6C974C;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-container {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 20px;
    padding: 5px 5px 5px 10px;
    border: 1px solid #ddd;
    position: relative;
}

.search-container input[type="text"] {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 5px 35px 5px 5px;
    font-size: 0.9rem;
    width: 120px;
    transition: width 0.3s ease-in-out;
    flex: 1;
}

.search-container input[type="text"]::placeholder {
    color: #888;
}

.search-container input[type="text"]:focus {
    width: 180px;
}

.search-container button {
    background-color: #2D5025;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    transition: background 0.2s;
    position: absolute;
    right: 5px;
    width: 28px;
    height: 28px;
}

.search-container button:hover {
    background-color: #218378;
}

.btn-signin {
    background-color: #2D5025;
    color: #fff;
    padding: 8px 18px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-signin:hover {
    background-color: #2E5E27;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Main Content */
main {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Latest Stories Section */
#latest-stories-section {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto 30px auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.latest-stories-column,
.main-story-column,
.side-stories-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.latest-stories-column h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2D5025;
    color: #2D5025;
    font-weight: 700;
}

.story-item-small {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.story-item-small:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
}

.story-item-small:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.story-item-small .category,
.story-item-large .category,
.story-item-medium .category {
    font-size: 0.75rem;
    color: #6C974C;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.story-item-small h4,
.story-item-large h3,
.story-item-medium h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    line-height: 1.4;
    color: #2c3e50;
}

.story-item-large h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 700;
}

.story-item-medium h4 {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 600;
}

.story-item-small .author,
.story-item-large .author,
.story-item-medium .author,
.story-item-large .subtitle,
.story-item-medium .sponsored {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 8px;
}

.story-item-large .subtitle {
    margin: 12px 0;
    font-size: 1.1rem;
    color: #495057;
    font-style: italic;
    line-height: 1.4;
}

.story-item-medium .sponsored {
    font-style: italic;
    font-size: 0.85rem;
    color: #6C974C;
    font-weight: 500;
}

.story-item-large img,
.story-item-medium img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-item-large img:hover,
.story-item-medium img:hover {
    transform: scale(1.02);
}

.story-item-large img {
    max-height: 350px;
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .story-item-large img {
        max-height: 250px;
    }
    
    /* Mobile video container sizing */
    .story-item-large .video-container {
        height: 250px; /* Match mobile story-item-large img max-height */
    }
}

/* Video Container for YouTube embeds */
.video-container {
    position: relative;
    width: 100%;
    height: 350px; /* Match the story-item-large img max-height */
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Story item adjustments for video content */
.story-item-large .video-container {
    margin-bottom: 15px;
}

.story-item-large .video-container:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

#latest-stories-section a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

#latest-stories-section a:hover {
    color: #2D5025;
    text-decoration: none;
}

/* Wellness Dimensions Section */
#wellness-dimensions-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 60px;
}

#wellness-dimensions-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2D5025;
    font-weight: 700;
    position: relative;
}

#wellness-dimensions-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #6C974C;
    border-radius: 2px;
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.wellness-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(108, 151, 76, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.wellness-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6C974C, #2D5025);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.wellness-item:hover::before {
    transform: scaleX(1);
}

.wellness-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(108, 151, 76, 0.2);
    border-color: #6C974C;
}

.wellness-bg-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.wellness-item:hover .wellness-bg-image {
    transform: scale(1.1);
}

.wellness-item-content h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

/* Topic Sections */
.topic-section {
    margin: 60px auto;
    padding: 40px 20px;
    max-width: 1400px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.topic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.topic-header h2 {
    font-size: 2rem;
    color: #2D5025;
    margin: 0;
    font-weight: 700;
}

.read-all-link {
    color: #6C974C;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.read-all-link:hover {
    color: #2D5025;
    transform: translateX(5px);
}

.topic-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.topic-post-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.topic-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.topic-post-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.topic-post-card:hover img {
    transform: scale(1.05);
}

/* Blog card link styling */
.blog-card-link {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

.blog-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.topic-post-content {
    padding: 20px;
}

.post-subcategory {
    font-size: 0.75rem;
    color: #6C974C;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.post-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #2c3e50;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: #2D5025;
}

.post-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 12px;
}

.post-author {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
}

/* Events Section */
#upcoming-events-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

#upcoming-events-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2D5025;
    font-weight: 700;
    text-align: center;
    position: relative;
}

#upcoming-events-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #6C974C;
    border-radius: 2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.event-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.event-card-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #6C974C, #2D5025);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.event-card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-card-image-placeholder img {
    transform: scale(1.05);
}

.event-card-content {
    padding: 25px;
}

.event-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.event-card-details {
    margin-bottom: 20px;
}

.event-card-details p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-card-details .icon {
    font-size: 1rem;
    width: 16px;
}

.event-card-spots {
    color: #6C974C;
    font-weight: 600;
}

.event-card-includes {
    margin-bottom: 20px;
}

.event-card-includes-title {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 600;
}

.event-card-includes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.event-card-includes-tags span {
    background: #f8f9fa;
    color: #6c757d;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f8f9fa;
}

.event-card-meta-bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-card-type {
    font-size: 0.8rem;
    color: #6C974C;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-card-rating {
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-icon {
    color: #ffc107;
}

.btn-view-details {
    background: #6C974C;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-view-details:hover {
    background: #2D5025;
    transform: translateY(-2px);
}

.section-read-more {
    text-align: center;
    margin-top: 40px;
}

.btn-read-more-events {
    background: #2D5025;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 80, 37, 0.3);
}

.btn-read-more-events:hover {
    background: #6C974C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 37, 0.4);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #2D5025 0%, #1a3018 100%);
    color: #ffffff;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6C974C, #2D5025, #6C974C);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px 30px;
    position: relative;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #6C974C;
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.footer-column ul li:hover {
    transform: translateX(5px);
}

.footer-column ul li a {
    color: #e8f1e8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column ul li a:hover {
    color: #6C974C;
    text-decoration: none;
}

.footer-column ul li a::before {
    content: '→';
    opacity: 0;
    margin-right: 8px;
    transition: opacity 0.3s ease;
    color: #6C974C;
}

.footer-column ul li a:hover::before {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.social-icons a:hover {
    background: #6C974C;
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(108, 151, 76, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icons a[aria-label="Facebook"]:hover {
    background: #1877f2;
}

.social-icons a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-icons a[aria-label="WhatsApp"]:hover {
    background: #25d366;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #e8f1e8;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

.footer-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom ul li a {
    color: #e8f1e8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.footer-bottom ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #6C974C;
    transition: width 0.3s ease;
}

.footer-bottom ul li a:hover::after {
    width: 100%;
}

.footer-bottom ul li a:hover {
    color: #6C974C;
}

/* Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-stagger.animate > * {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-stagger.animate > *:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate-stagger.animate > *:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate-stagger.animate > *:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate-stagger.animate > *:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate-stagger.animate > *:nth-child(5) { transition-delay: 0.5s; }

/* Conscious Commerce Page Styles */
.commerce-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.commerce-intro {
    text-align: center;
    padding: 60px 20px 40px;
}

.commerce-intro h1 {
    font-size: 3rem;
    color: #2D5025;
    margin-bottom: 20px;
    font-weight: 700;
}

.commerce-intro .subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.commerce-search {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.commerce-search input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.commerce-search input:focus {
    outline: none;
    border-color: #6C974C;
    box-shadow: 0 0 0 3px rgba(108, 151, 76, 0.1);
}

.commerce-search .search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.1rem;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    background: #ffffff;
    color: #6c757d;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #6C974C;
    background: #6C974C;
    color: white;
    transform: translateY(-2px);
}

.commerce-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.commerce-sidebar {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

.sidebar-section {
    padding: 25px;
    border-bottom: 1px solid #f8f9fa;
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section h3 {
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    color: #2D5025;
    font-weight: 700;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.category-list li:hover,
.category-list li.active {
    background: #f8f9fa;
    color: #2D5025;
    transform: translateX(5px);
}

.category-list li.active {
    background: #6C974C;
    color: white;
}

.cat-icon {
    font-size: 1.2rem;
    margin-right: 12px;
}

.cat-count {
    background: rgba(108, 151, 76, 0.1);
    color: #6C974C;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-list li.active .cat-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.price-inputs input {
    flex: 1;
    padding: 8px 10px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: center;
    min-width: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.price-inputs input:focus {
    outline: none;
    border-color: #6C974C;
    box-shadow: 0 0 0 2px rgba(108, 151, 76, 0.1);
}

.price-inputs span {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.apply-filter-btn {
    padding: 10px 15px;
    background: #6C974C;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.apply-filter-btn:hover {
    background: #2D5025;
    transform: translateY(-2px);
}

.sort-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: #6C974C;
}

.commerce-products-area {
    min-height: 500px;
}

.products-header {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.commerce-product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    min-height: 450px;
}

.commerce-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.commerce-product-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-icon {
    font-size: 3rem;
    text-align: center;
    padding: 30px 20px 20px;
    line-height: 1;
}

.commerce-product-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 20px 15px;
    line-height: 1.3;
    text-align: center;
}

.product-desc {
    padding: 0 20px 15px;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    padding: 0 20px 15px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-features li {
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features li::before {
    content: '✓';
    color: #6C974C;
    font-weight: bold;
    font-size: 0.9rem;
}

.product-rating {
    padding: 0 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.product-rating .star {
    color: #ffc107;
    font-size: 1rem;
}

.reviews {
    color: #6c757d;
    font-size: 0.8rem;
}

.product-meta {
    padding: 0 20px 15px;
    text-align: center;
}

.meta {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-price-row {
    padding: 20px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid #f8f9fa;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2D5025;
}

.product-old-price {
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-left: 8px;
}

.add-to-cart {
    background: #6C974C;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.add-to-cart:hover {
    background: #2D5025;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 80, 37, 0.3);
    color: white;
    text-decoration: none;
}

/* Additional Animations and Hover Effects for Commerce Page */
.commerce-product-card {
    animation: fadeInUp 0.6s ease-out;
}

.commerce-product-card:nth-child(1) { animation-delay: 0.1s; }
.commerce-product-card:nth-child(2) { animation-delay: 0.2s; }
.commerce-product-card:nth-child(3) { animation-delay: 0.3s; }
.commerce-product-card:nth-child(4) { animation-delay: 0.4s; }
.commerce-product-card:nth-child(5) { animation-delay: 0.5s; }
.commerce-product-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-btn {
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.category-list li {
    position: relative;
    overflow: hidden;
}

.category-list li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #6C974C;
    transition: width 0.3s ease;
}

.category-list li:hover::after,
.category-list li.active::after {
    width: 100%;
}

.commerce-search input {
    position: relative;
}

.commerce-search input:focus + .search-icon {
    color: #6C974C;
    transform: translateY(-50%) scale(1.1);
}

.add-to-cart {
    position: relative;
    overflow: hidden;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.add-to-cart:hover::before {
    left: 100%;
}

.product-icon {
    transition: transform 0.3s ease;
}

.commerce-product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 151, 76, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(108, 151, 76, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(108, 151, 76, 0);
    }
}

.commerce-sidebar {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.search-filter-section {
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading skeleton animation for better UX */
.product-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Newsletter Signup Section - Community Page */
#newsletter-signup-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#newsletter-signup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6C974C, #2D5025, #6C974C);
}

.newsletter-header {
    margin-bottom: 40px;
}

.newsletter-section-eyebrow {
    font-size: 0.9rem;
    color: #6C974C;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-header h2 {
    font-size: 2.5rem;
    color: #2D5025;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.newsletter-header p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-dimension-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.dimension-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dimension-card:hover {
    border-color: #6C974C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 151, 76, 0.15);
}

.dimension-card.selected {
    border-color: #6C974C;
    background: #f8fff8;
    box-shadow: 0 6px 20px rgba(108, 151, 76, 0.2);
}

.dimension-card.selected::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #6C974C;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.dimension-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.dimension-card:hover img {
    transform: scale(1.1);
}

.dimension-card span {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.newsletter-input-group {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0 20px 0;
}

.newsletter-input-group input {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    background: #ffffff;
    transition: all 0.3s ease;
    min-width: 250px;
    flex: 1;
    max-width: 300px;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: #6C974C;
    box-shadow: 0 0 0 3px rgba(108, 151, 76, 0.1);
}

.newsletter-input-group input::placeholder {
    color: #999;
}

.btn-signup-newsletter {
    background: #6C974C;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 150px;
}

.btn-signup-newsletter:hover {
    background: #2D5025;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 37, 0.3);
}

.btn-signup-newsletter:active {
    transform: translateY(0);
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 20px;
    line-height: 1.5;
}

.newsletter-disclaimer a {
    color: #6C974C;
    text-decoration: none;
    font-weight: 500;
}

.newsletter-disclaimer a:hover {
    text-decoration: underline;
}

/* OTP Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #2D5025;
}

.modal-content h3 {
    color: #2D5025;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal-content p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.5;
}

#otp-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 0.5em;
    margin-bottom: 20px;
    box-sizing: border-box;
}

#otp-input:focus {
    outline: none;
    border-color: #6C974C;
    box-shadow: 0 0 0 3px rgba(108, 151, 76, 0.1);
}

#submit-otp-btn {
    width: 100%;
    background: #6C974C;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#submit-otp-btn:hover {
    background: #2D5025;
    transform: translateY(-2px);
}

#otp-error {
    text-align: center;
    margin-top: 10px;
}

/* Responsive Design for Newsletter Section */
@media (max-width: 768px) {
    #newsletter-signup-section {
        margin: 10px;
        padding: 25px 18px;
    }
    
    .newsletter-header h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .newsletter-header p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .newsletter-dimension-selection {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 12px;
        margin: 25px 0;
        padding: 0 10px;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .dimension-card {
        padding: 16px 8px;
        min-height: 100px;
        border-width: 1.5px;
        border-radius: 10px;
    }
    
    .dimension-card img {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }
    
    .dimension-card span {
        font-size: 0.75rem;
        line-height: 1.2;
        font-weight: 600;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 12px;
        margin: 30px 0 15px 0;
    }
    
    .newsletter-input-group input {
        min-width: auto;
        max-width: none;
        width: 100%;
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .btn-signup-newsletter {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .newsletter-disclaimer {
        font-size: 0.8rem;
        margin-top: 15px;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 25px;
        width: 92%;
    }
    
    .modal-content h3 {
        font-size: 1.3rem;
    }
    
    #otp-input {
        padding: 12px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #newsletter-signup-section {
        margin: 8px;
        padding: 20px 15px;
    }
    
    .newsletter-header h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .newsletter-header p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .newsletter-dimension-selection {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 20px 0;
    }
    
    .dimension-card {
        padding: 16px 12px;
        min-height: 95px;
        max-width: none;
        margin: 0;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .dimension-card img {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .dimension-card span {
        font-size: 0.75rem;
        font-weight: 600;
        line-height: 1.2;
        color: #2c3e50;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .newsletter-input-group {
        gap: 8px;
        margin: 20px 0 10px 0;
    }
    
    .newsletter-input-group input {
        padding: 12px 14px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .btn-signup-newsletter {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .newsletter-disclaimer {
        font-size: 0.7rem;
        margin-top: 10px;
        line-height: 1.3;
    }
}

/* Responsive Design Updates for Commerce */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .commerce-main {
        grid-template-columns: 270px 1fr;
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .commerce-main {
        grid-template-columns: 250px 1fr;
        gap: 20px;
    }
    
    .sidebar-section {
        padding: 20px;
    }
    
    .price-inputs input {
        padding: 8px 8px;
        font-size: 0.8rem;
    }
    
    .newsletter-dimension-selection {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        grid-template-rows: auto;
        gap: 18px;
        max-width: 100% !important;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .dimension-card {
        padding: 15px 10px;
        min-height: 95px;
    }
    
    .dimension-card img {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }
    
    .dimension-card span {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .commerce-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .commerce-sidebar {
        position: static;
        order: 2;
    }
    
    .commerce-products-area {
        order: 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .search-filter-section {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .commerce-search {
        min-width: auto;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .commerce-intro {
        padding: 40px 15px 30px;
    }
    
    .commerce-intro h1 {
        font-size: 2.2rem;
    }
    
    .commerce-intro .subtitle {
        font-size: 1.1rem;
    }
    
    .sidebar-section {
        padding: 15px 20px;
    }
    
    .price-inputs {
        gap: 6px;
    }
    
    .price-inputs input {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .apply-filter-btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    /* Reorder the latest stories section for mobile - INDEX PAGE ONLY */
    .index-page #latest-stories-section {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }
    
    /* Mobile order: 1) Welcome to BeSatvik (main story), 2) Latest Stories, 3) Sponsor Stories (featured) - INDEX PAGE ONLY */
    .index-page .main-story-column {
        order: 1;
    }
    
    .index-page .latest-stories-column {
        order: 2;
    }
    
    .index-page .side-stories-column {
        order: 3;
    }
    
    /* Make wellness dimensions grid horizontally scrollable on mobile - INDEX PAGE ONLY */
    .index-page .wellness-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .index-page .wellness-item {
        flex: 0 0 180px;
        scroll-snap-align: start;
    }
    
    /* Make topic section grids horizontally scrollable on mobile - INDEX PAGE ONLY */
    .index-page .topic-section .blogs-grid {
        display: flex !important;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .index-page .topic-section .blog-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    
    /* Make events grid horizontally scrollable on mobile - INDEX PAGE ONLY */
    .index-page .events-grid {
        display: flex !important;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .index-page .event-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    
    /* Add scrollbar styling for better UX - INDEX PAGE ONLY */
    .index-page .wellness-grid::-webkit-scrollbar,
    .index-page .topic-section .blogs-grid::-webkit-scrollbar,
    .index-page .events-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .index-page .wellness-grid::-webkit-scrollbar-track,
    .index-page .topic-section .blogs-grid::-webkit-scrollbar-track,
    .index-page .events-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .index-page .wellness-grid::-webkit-scrollbar-thumb,
    .index-page .topic-section .blogs-grid::-webkit-scrollbar-thumb,
    .index-page .events-grid::-webkit-scrollbar-thumb {
        background: #6C974C;
        border-radius: 10px;
    }
    
    .index-page .wellness-grid::-webkit-scrollbar-thumb:hover,
    .index-page .topic-section .blogs-grid::-webkit-scrollbar-thumb:hover,
    .index-page .events-grid::-webkit-scrollbar-thumb:hover {
        background: #2D5025;
    }
}

/* Mobile Header Styles */
@media (max-width: 768px) {
    #main-header {
        flex-direction: column;
        padding: 12px 15px;
        gap: 12px;
    }
    
    .logo-container {
        order: 1;
        width: 100%;
        text-align: center;
    }
    
    .logo-container img#logo {
        height: 45px;
    }
    
    .main-nav {
        order: 2;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav ul {
        display: flex;
        gap: 20px;
        padding: 8px 0;
        min-width: max-content;
        justify-content: flex-start;
    }
    
    .main-nav ul li a {
        white-space: nowrap;
        padding: 8px 12px;
        border-radius: 20px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .main-nav ul li a:hover,
    .main-nav ul li a.active {
        background: #f8f9fa;
        color: #2D5025;
    }
    
    .main-nav ul li a::after {
        display: none;
    }
    
    .header-icons {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .search-container {
        flex: 1;
        max-width: 200px;
    }
    
    .search-container input[type="text"] {
        width: 100px;
        font-size: 0.8rem;
    }
    
    .search-container input[type="text"]:focus {
        width: 150px;
    }
    
    .btn-signin {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    /* Hide navigation scrollbar on mobile */
    .main-nav::-webkit-scrollbar {
        height: 0;
        background: transparent;
    }
    
    /* Add fade effect for navigation scroll */
    .main-nav::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 20px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9));
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    #main-header {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .logo-container img#logo {
        height: 40px;
    }
    
    .main-nav ul {
        gap: 15px;
        padding: 6px 0;
    }
    
    .main-nav ul li a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .header-icons {
        gap: 8px;
    }
    
    .search-container {
        max-width: 160px;
    }
    
    .search-container input[type="text"] {
        width: 80px;
        font-size: 0.75rem;
    }
    
    .search-container input[type="text"]:focus {
        width: 120px;
    }
    
    .btn-signin {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
}
