/* Vegan Community Plugin Styles v2.0 */

/* Hero Banner - Prominently displays at top of homepage */
.vegan-hero-banner {
    background: linear-gradient(135deg, #B8A9D6 0%, #C7E9C0 100%);
    padding: 40px 20px;
    text-align: center;
    margin: -20px -20px 40px -20px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.vegan-hero-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.vegan-hero-text h1 {
    color: #6B4E9B;
    font-size: 42px;
    margin: 20px 0 10px;
    font-weight: 700;
}

.vegan-hero-text p {
    color: #5A7D5A;
    font-size: 20px;
    margin: 0;
}

/* Hero Call-to-Action (for non-logged-in users) */
.vegan-hero-cta {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.vegan-hero-cta h2 {
    color: #6B4E9B;
    font-size: 32px;
    margin: 0 0 30px;
    text-align: center;
}

.vegan-cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.vegan-cta-col h3 {
    color: #5A7D5A;
    font-size: 20px;
    margin: 0 0 15px;
}

.vegan-cta-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vegan-cta-col li {
    padding: 8px 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.vegan-cta-buttons {
    text-align: center;
    margin-bottom: 20px;
}

.vegan-cta-btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    margin: 0 10px;
    transition: transform 0.2s, box-shadow 0.3s;
}

.vegan-cta-primary {
    background: linear-gradient(135deg, #8B7FB8 0%, #6B4E9B 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(139, 127, 184, 0.4);
}

.vegan-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 127, 184, 0.5);
}

.vegan-cta-secondary {
    background: linear-gradient(135deg, #A8D5A5 0%, #5A7D5A 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(168, 213, 165, 0.4);
}

.vegan-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 213, 165, 0.5);
}

.vegan-cta-note {
    text-align: center;
    color: #8B7FB8;
    font-size: 14px;
    font-style: italic;
    margin: 0;
}

/* Hero Member Welcome (for logged-in users) */
.vegan-hero-welcome {
    background: linear-gradient(135deg, #A8D5A5 0%, #5A7D5A 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.vegan-hero-welcome h2 {
    margin: 0 0 20px;
    font-size: 28px;
}

.vegan-member-quick-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.vegan-quick-btn {
    background: white;
    color: #5A7D5A;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.vegan-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Login Form */
.vegan-login-wrap {
    max-width: 450px;
    margin: 50px auto;
    padding: 20px;
}

.vegan-login-box {
    background: linear-gradient(135deg, #FFF8E7 0%, #C7E9C0 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.vegan-login-box h2 {
    text-align: center;
    color: #6B4E9B;
    font-size: 28px;
    margin: 0 0 30px;
}

.vegan-register-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #B8A9D6;
    color: #5A7D5A;
    font-weight: 600;
}

.vegan-register-link a {
    color: #6B4E9B;
    font-weight: 700;
    text-decoration: none;
}

.vegan-register-link a:hover {
    text-decoration: underline;
}

/* Registration Form */
.vegan-register-wrap {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
}

.vegan-register-box {
    background: linear-gradient(135deg, #FFF8E7 0%, #C7E9C0 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.vegan-register-box h2 {
    text-align: center;
    color: #6B4E9B;
    font-size: 28px;
    margin: 0 0 20px;
}

.vegan-benefits {
    text-align: center;
    color: #5A7D5A;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.vegan-benefits-list {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 20px 0 30px;
    list-style: none;
}

.vegan-benefits-list li {
    color: #5A7D5A;
    font-weight: 600;
    padding: 8px 0;
    font-size: 15px;
}

.vegan-login-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #B8A9D6;
    color: #5A7D5A;
    font-weight: 600;
}

.vegan-login-link a {
    color: #6B4E9B;
    font-weight: 700;
    text-decoration: none;
}

.vegan-login-link a:hover {
    text-decoration: underline;
}

/* Members Area - Locked State */
.vegan-members-locked {
    max-width: 600px;
    margin: 50px auto;
    padding: 50px;
    background: linear-gradient(135deg, #FFF8E7 0%, #C7E9C0 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.vegan-lock-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.vegan-members-locked h2 {
    color: #6B4E9B;
    font-size: 32px;
    margin-bottom: 15px;
}

.vegan-members-locked > p {
    color: #5A7D5A;
    font-size: 18px;
    margin-bottom: 30px;
}

.vegan-benefits-preview {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.vegan-benefits-preview h3 {
    color: #6B4E9B;
    text-align: center;
    margin-bottom: 20px;
}

.vegan-benefits-preview ul {
    list-style: none;
    padding: 0;
}

.vegan-benefits-preview li {
    color: #5A7D5A;
    font-weight: 600;
    padding: 10px 0;
    font-size: 16px;
}

.vegan-cta-buttons {
    margin-top: 30px;
}

.vegan-btn-primary {
    background: linear-gradient(135deg, #8B7FB8 0%, #6B4E9B 100%);
    padding: 15px 40px !important;
    font-size: 18px !important;
}

.vegan-btn-secondary {
    background: linear-gradient(135deg, #A8D5A5 0%, #5A7D5A 100%);
    padding: 15px 40px !important;
    font-size: 18px !important;
}

/* Members Area - Content */
.vegan-members-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.vegan-welcome-banner {
    background: linear-gradient(135deg, #8B7FB8 0%, #6B4E9B 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.vegan-welcome-banner h1 {
    margin: 0 0 10px;
    font-size: 36px;
}

.vegan-welcome-banner p {
    margin: 0;
    font-size: 18px;
    opacity: 0.9;
}

.vegan-members-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.vegan-member-card {
    background: linear-gradient(135deg, #FFF8E7 0%, #C7E9C0 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.vegan-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vegan-member-card .member-card-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.vegan-member-card h3 {
    color: #6B4E9B;
    font-size: 22px;
    margin: 0 0 10px;
}

.vegan-member-card p {
    color: #5A7D5A;
    margin: 0 0 15px;
}

.vegan-member-card .vegan-link {
    color: #6B4E9B;
    font-weight: 600;
    text-decoration: none;
}

.vegan-member-card .vegan-link:hover {
    text-decoration: underline;
}

.vegan-member-updates {
    background: linear-gradient(135deg, #FFF8E7 0%, #C7E9C0 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.vegan-member-updates h3 {
    color: #6B4E9B;
    margin: 0 0 20px;
}

.vegan-update-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    color: #5A7D5A;
}

.vegan-update-item strong {
    color: #6B4E9B;
}

/* Status Badges */
.vegan-status-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.vegan-badge-available,
.vegan-badge-coming {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
}

.vegan-badge-available {
    background: linear-gradient(135deg, #A8D5A5 0%, #5A7D5A 100%);
    color: white;
}

.vegan-badge-coming {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
}

/* Section Titles */
.vegan-section-title {
    text-align: center;
    color: #6B4E9B;
    font-size: 28px;
    margin: 40px 0 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #B8A9D6;
}

/* Coming Soon Cards */
.vegan-card-coming {
    position: relative;
    opacity: 0.85;
}

.vegan-coming-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 12px;
}

.vegan-eta {
    display: block;
    color: #8B7FB8;
    font-weight: 600;
    margin-top: 10px;
    font-style: italic;
}

/* Roadmap Notice */
.vegan-roadmap-notice {
    background: linear-gradient(135deg, #8B7FB8 0%, #6B4E9B 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.vegan-roadmap-notice h3 {
    margin: 0 0 15px;
    font-size: 24px;
}

.vegan-roadmap-notice p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Member Badge */
.vegan-member-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
}

/* Meal Plan Styles */
.vegan-meal-plan {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.vegan-plan-header {
    text-align: center;
    margin-bottom: 40px;
}

.vegan-plan-header h1 {
    color: #6B4E9B;
    font-size: 36px;
    margin-bottom: 10px;
}

.vegan-week-dates {
    color: #5A7D5A;
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.vegan-plan-header h2 {
    color: #8B7FB8;
    font-size: 24px;
    margin-top: 15px;
}

.vegan-weekly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.vegan-day-card {
    background: linear-gradient(135deg, #FFF8E7 0%, #C7E9C0 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.vegan-day-card h3 {
    color: #6B4E9B;
    font-size: 22px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #B8A9D6;
}

.vegan-meal {
    margin-bottom: 15px;
}

.vegan-meal strong {
    display: block;
    color: #5A7D5A;
    margin-bottom: 5px;
}

.vegan-meal p {
    margin: 0;
    padding-left: 20px;
    color: #333;
}

.vegan-plan-actions {
    text-align: center;
    margin-bottom: 30px;
}

.vegan-plan-note {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #8B7FB8;
}

.vegan-plan-note p {
    margin: 0;
    color: #5A7D5A;
}

/* Shopping List Styles */
.vegan-shopping-list {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.vegan-list-header {
    text-align: center;
    margin-bottom: 40px;
}

.vegan-list-header h1 {
    color: #6B4E9B;
    font-size: 36px;
    margin-bottom: 10px;
}

.vegan-list-header p {
    color: #5A7D5A;
    font-size: 16px;
    margin: 5px 0;
}

.vegan-shopping-categories {
    margin-bottom: 40px;
}

.vegan-category-section {
    background: linear-gradient(135deg, #FFF8E7 0%, #C7E9C0 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.vegan-category-section h3 {
    color: #6B4E9B;
    font-size: 22px;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #B8A9D6;
}

.vegan-shopping-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vegan-shopping-items li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(184, 169, 214, 0.3);
}

.vegan-shopping-items li:last-child {
    border-bottom: none;
}

.vegan-shopping-items label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #333;
    font-size: 16px;
}

.vegan-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.vegan-shopping-items input:checked + span {
    text-decoration: line-through;
    opacity: 0.6;
}

.vegan-list-actions {
    text-align: center;
    margin-bottom: 30px;
}

.vegan-list-tip {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #A8D5A5;
}

.vegan-list-tip p {
    margin: 0;
    color: #5A7D5A;
}

/* Print Styles */
@media print {
    .vegan-plan-actions,
    .vegan-list-actions {
        display: none;
    }
}

.vegan-login-box form p {
    margin-bottom: 20px;
}

.vegan-login-box label {
    display: block;
    color: #5A7D5A;
    font-weight: 600;
    margin-bottom: 8px;
}

.vegan-login-box input[type="text"],
.vegan-login-box input[type="password"],
.vegan-login-box input[type="email"],
.vegan-login-box textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #B8A9D6;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.vegan-login-box input:focus,
.vegan-login-box textarea:focus {
    border-color: #8B7FB8;
    outline: none;
}

.vegan-login-box button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #8B7FB8 0%, #6B4E9B 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vegan-login-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 127, 184, 0.4);
}

.vegan-links {
    text-align: center;
    margin-top: 20px;
}

.vegan-links a {
    color: #6B4E9B;
    text-decoration: none;
    font-weight: 600;
}

.vegan-links a:hover {
    text-decoration: underline;
}

/* Dashboard */
.vegan-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.vegan-dashboard h1 {
    text-align: center;
    color: #6B4E9B;
    font-size: 36px;
    margin-bottom: 10px;
}

.vegan-dashboard > p {
    text-align: center;
    color: #5A7D5A;
    font-size: 18px;
    margin-bottom: 30px;
}

.vegan-member-highlight {
    background: linear-gradient(135deg, #8B7FB8 0%, #6B4E9B 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(139, 127, 184, 0.3);
}

.vegan-member-highlight h3 {
    margin: 0 0 10px;
    font-size: 28px;
}

.vegan-member-highlight p {
    margin: 0 0 20px;
    font-size: 16px;
    opacity: 0.9;
}

.vegan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.vegan-card {
    background: linear-gradient(135deg, #FFF8E7 0%, #C7E9C0 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.vegan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vegan-card .card-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
}

.vegan-card h3 {
    color: #6B4E9B;
    font-size: 22px;
    margin: 0 0 10px;
}

.vegan-card p {
    color: #5A7D5A;
    margin: 0;
}

.vegan-actions {
    text-align: center;
}

.vegan-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #8B7FB8 0%, #6B4E9B 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    margin: 0 10px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vegan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 127, 184, 0.4);
}

/* Contact Form */
.vegan-contact-wrap {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
}

.vegan-contact-box {
    background: linear-gradient(135deg, #FFF8E7 0%, #C7E9C0 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.vegan-contact-box h2 {
    text-align: center;
    color: #6B4E9B;
    font-size: 28px;
    margin: 0 0 30px;
}

.vegan-contact-box textarea {
    resize: vertical;
    min-height: 150px;
}

/* Messages */
.vegan-message {
    background: linear-gradient(135deg, #C7E9C0 0%, #A8D5A5 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 30px auto;
    max-width: 500px;
    color: #2D5A2D;
    font-size: 18px;
}

.vegan-message a {
    color: #6B4E9B;
    font-weight: 600;
    text-decoration: none;
}

.vegan-message a:hover {
    text-decoration: underline;
}

.vegan-success {
    background: linear-gradient(135deg, #C7E9C0 0%, #A8D5A5 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    color: #2D5A2D;
    font-size: 18px;
    font-weight: 600;
}

.vegan-error {
    background: linear-gradient(135deg, #FFCDD2 0%, #EF9A9A 100%);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    color: #B71C1C;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vegan-hero-text h1 {
        font-size: 32px;
    }
    
    .vegan-hero-text p {
        font-size: 16px;
    }
    
    .vegan-hero-image {
        max-width: 100%;
    }
    
    /* Hero CTA Mobile */
    .vegan-hero-cta {
        padding: 25px;
    }
    
    .vegan-hero-cta h2 {
        font-size: 24px;
    }
    
    .vegan-cta-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vegan-cta-btn {
        display: block;
        margin: 10px 0;
        padding: 15px 30px;
        font-size: 18px;
    }
    
    .vegan-member-quick-links {
        flex-direction: column;
    }
    
    .vegan-quick-btn {
        width: 100%;
    }
    
    .vegan-cards {
        grid-template-columns: 1fr;
    }
    
    .vegan-login-box,
    .vegan-contact-box {
        padding: 25px;
    }
    
    .vegan-btn {
        display: block;
        margin: 10px 0;
    }
}
