/**
 * Page-Specific Styles
 * Extracted from Twig templates on 2025-10-14
 * Total files with embedded styles: 32
 * Total style blocks: 33
 */

/* ========================================================================
   From: testimonials/show.html.twig
   ======================================================================== */
.card.border-success {
    background-color: #1a2515;
    border-color: #5a7a3c !important;
}

.card.border-success .card-body {
    background-color: #3c593c;
    color: #cbd5db;
}

.card-header.bg-success {
    background-color: #3a5a25 !important;
    border-color: #5a7a3c !important;
}

.testimonial-content {
    font-size: 1.1em;
    line-height: 1.8;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 0.375rem;
    margin: 2rem 0;
}

.testimonial-content blockquote {
    font-style: italic;
    border-left: 3px solid #dee2e6;
    padding-left: 1rem;
    margin: 1rem 0;
}

/* ========================================================================
   From: my-clients/show.html.twig
   ======================================================================== */

.client-content {
    font-size: 1.1em;
    line-height: 1.8;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 0.375rem;
    margin: 2rem 0;
}

.testimonial-content blockquote {
    font-style: italic;
    border-left: 3px solid #dee2e6;
    padding-left: 1rem;
    margin: 1rem 0;
}

/* ========================================================================
   From: store/cart.html.twig
   ======================================================================== */

.cart-item-row {
        border-bottom: 1px solid #dee2e6;
        padding: 15px 0;
    }
    .cart-item-image {
        max-width: 100px;
        height: auto;
    }
    .quantity-input {
        width: 80px;
        text-align: center;
    }
    .cart-summary {
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 5px;
    }
    .remove-item-btn {
        cursor: pointer;
        color: #dc3545;
    }
    .remove-item-btn:hover {
        color: #a71d2a;
    }

/* ========================================================================
   From: store/product.html.twig
   ======================================================================== */

.product-image-gallery img {
        cursor: pointer;
        border: 2px solid transparent;
        transition: border-color 0.2s;
    }
    .product-image-gallery img:hover,
    .product-image-gallery img.active {
        border-color: #007bff;
    }
    .main-product-image {
        max-height: 500px;
        object-fit: contain;
    }
    .stock-badge {
        font-size: 1.1em;
        padding: 8px 16px;
    }

/* ========================================================================
   From: store/index.html.twig
   ======================================================================== */

/* Masonry Grid Layout for Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-card-wrapper {
    break-inside: avoid;
    margin-bottom: 0;
}

.product-card-wrapper .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0,0,0,0.125);
}

.product-card-wrapper .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}

.product-image {
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.product-image:hover {
    opacity: 0.9;
}

.product-image-placeholder {
    height: 250px;
}

/* Category Grid Layout */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-card-wrapper {
    break-inside: avoid;
    margin-bottom: 0;
}

.category-card-wrapper .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0,0,0,0.125);
}

.category-card-wrapper .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}

.category-image {
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.category-image:hover {
    opacity: 0.9;
}

.category-image-placeholder {
    height: 180px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-grid,
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .product-image,
    .product-image-placeholder {
        height: 200px;
    }

    .category-image,
    .category-image-placeholder {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .product-grid,
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ========================================================================
   From: members/pictures.html.twig
   ======================================================================== */

/* Upload Form Styles */
.drop-zone {
    border: 3px dashed #cbd5e0;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-zone:hover {
    border-color: #667eea;
    background: linear-gradient(to bottom, #eef2ff 0%, #f5f3ff 100%);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.12);
    transform: translateY(-2px);
}

.drop-zone.drag-over {
    border-color: #667eea;
    border-width: 4px;
    background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 100%);
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.25);
}

/* Preview Grid */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.preview-item {
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.preview-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.preview-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    background: #dc3545;
    border: 2px solid white;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.9;
}

.preview-item .remove-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.preview-item .filename {
    padding: 8px;
    font-size: 0.75rem;
    color: #6c757d;
    background: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Submit Button */
#uploadForm button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4) !important;
}

#uploadForm button[type="submit"]:active {
    transform: translateY(-1px);
}

/* Image Gallery Styles */
.image-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.card-img-top-wrapper:hover .image-overlay {
    opacity: 1;
}

.modal-nav-btn:hover {
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.1);
}

/* Hide navigation arrows on mobile */
@media (max-width: 768px) {
    .modal-nav-btn {
        display: none !important;
    }
}

#modalImage {
    cursor: grab;
    user-select: none;
}

#modalImage:active {
    cursor: grabbing;
}

/* ========================================================================
   From: members/reset-password.html.twig
   ======================================================================== */

.reset-password-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .reset-password-card {
        background: white;
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 40px;
    }

    .reset-password-icon {
        text-align: center;
        margin-bottom: 25px;
    }

    .reset-password-icon i {
        font-size: 4rem;
    }

    .reset-password-icon i.success {
        color: #5cb85c;
    }

    .reset-password-icon i.error {
        color: #d9534f;
    }

    .reset-password-icon i.key {
        color: #5cb85c;
    }

    .reset-password-card h1 {
        text-align: center;
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #333;
    }

    .reset-password-card .lead-text {
        text-align: center;
        color: #666;
        margin-bottom: 25px;
    }

    .form-control-lg {
        height: 46px;
        font-size: 16px;
    }

    .btn-block {
        width: 100%;
    }

    .password-strength {
        height: 5px;
        margin-top: 8px;
        border-radius: 3px;
        transition: all 0.3s;
        background-color: #e9ecef;
    }

    .password-strength.weak {
        background-color: #d9534f;
        width: 33%;
    }

    .password-strength.medium {
        background-color: #f0ad4e;
        width: 66%;
    }

    .password-strength.strong {
        background-color: #5cb85c;
        width: 100%;
    }

    .breadcrumb {
        background-color: transparent;
        padding: 8px 0;
        margin-bottom: 20px;
    }

    .breadcrumb > li + li:before {
        content: ">\00a0";
    }

    .info-box {
        background-color: #d9edf7;
        border: 1px solid #bce8f1;
        color: #31708f;
        padding: 15px;
        border-radius: 4px;
        margin-bottom: 20px;
    }

    .info-box ul {
        margin-bottom: 0;
        margin-top: 10px;
        padding-left: 20px;
    }

    .info-box ul li {
        margin-bottom: 5px;
    }

/* ========================================================================
   From: members/verify.html.twig
   ======================================================================== */

.verification-code-input {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        text-align: center;
        margin: 0 5px;
        border: 2px solid #dee2e6;
        border-radius: 8px;
    }
    .verification-code-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }
    .verification-code-input.is-invalid {
        border-color: #dc3545;
    }
    .resend-timer {
        color: #6c757d;
        font-size: 0.875rem;
    }
    .resend-link {
        cursor: pointer;
        color: #0d6efd;
        text-decoration: underline;
    }
    .resend-link:hover {
        color: #0a58ca;
    }
    .resend-link.disabled {
        color: #6c757d;
        cursor: not-allowed;
        text-decoration: none;
    }

/* ========================================================================
   From: members/appointments/book.html.twig
   ======================================================================== */

.step-indicator {
    padding: 20px;
}
.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.step-indicator.active .step-number {
    background-color: #007bff;
    color: white;
}
.step-indicator.completed .step-number {
    background-color: #28a745;
    color: white;
}
.step-title {
    font-weight: 500;
    color: #6c757d;
}
.step-indicator.active .step-title {
    color: #007bff;
    font-weight: bold;
}
.appointment-type-card {
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}
.appointment-type-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 8px rgba(0,123,255,0.1);
}

/* ========================================================================
   From: members/appointments/reschedule.html.twig
   ======================================================================== */

.step-indicator {
    position: relative;
    padding: 10px 0;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
    font-weight: bold;
}

.step-indicator.active .step-number {
    background-color: #007bff;
    color: white;
}

.step-indicator.completed .step-number {
    background-color: #28a745;
    color: white;
}

.step-title {
    font-weight: 600;
    color: #6c757d;
}

.step-indicator.active .step-title {
    color: #007bff;
}

.step-indicator.completed .step-title {
    color: #28a745;
}

/* ========================================================================
   From: members/appointments/timeline.html.twig
   ======================================================================== */

/* Timeline Year Section */
.timeline-year {
    margin-bottom: 40px;
}

.timeline-year-label {
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    border: 2px solid #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-marker i {
    font-size: 14px;
    color: #6c757d;
}

/* Timeline Item Colors */
.timeline-success .timeline-marker {
    border-color: #28a745;
    background: #d4edda;
}

.timeline-success .timeline-marker i {
    color: #28a745;
}

.timeline-danger .timeline-marker {
    border-color: #dc3545;
    background: #f8d7da;
}

.timeline-danger .timeline-marker i {
    color: #dc3545;
}

.timeline-warning .timeline-marker {
    border-color: #ffc107;
    background: #fff3cd;
}

.timeline-warning .timeline-marker i {
    color: #856404;
}

.timeline-secondary .timeline-marker {
    border-color: #6c757d;
    background: #e9ecef;
}

.timeline-content {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.timeline-header h5 {
    font-size: 1.1rem;
    color: #495057;
}

.timeline-body {
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.timeline-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -30px;
        width: 25px;
        height: 25px;
    }

    .timeline-marker i {
        font-size: 12px;
    }

    .timeline-content .row > div:last-child {
        text-align: left !important;
        margin-top: 10px;
    }
}

/* ========================================================================
   From: members/forgot-password.html.twig
   ======================================================================== */

.forgot-password-container {
    max-width: 500px;
    margin: 0 auto;
}

.forgot-password-card {
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.forgot-password-icon {
    text-align: center;
    margin-bottom: 25px;
}

.forgot-password-icon i {
    font-size: 4rem;
    color: #5cb85c;
}

.forgot-password-card h1 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.forgot-password-card .lead-text {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.form-control-lg {
    height: 46px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.divider {
    margin: 30px 0;
    border-top: 1px solid #e9ecef;
}

.breadcrumb {
    background-color: transparent;
    padding: 8px 0;
    margin-bottom: 20px;
}

.breadcrumb > li + li:before {
    content: ">\00a0";
}

/* Dark mode support for all auth cards (login, forgot-password, reset-password, etc.) */
[data-bs-theme="dark"] .forgot-password-card,
[data-bs-theme="dark"] .login-card,
[data-bs-theme="dark"] .reset-password-card,
[data-bs-theme="dark"] .signup-card {
    background: #2d3748 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #e2e8f0;
}

[data-bs-theme="dark"] .forgot-password-card h1,
[data-bs-theme="dark"] .login-card h1,
[data-bs-theme="dark"] .reset-password-card h1,
[data-bs-theme="dark"] .signup-card h1 {
    color: #e2e8f0 !important;
}

[data-bs-theme="dark"] .forgot-password-card .lead-text,
[data-bs-theme="dark"] .login-card .lead-text,
[data-bs-theme="dark"] .reset-password-card .lead-text,
[data-bs-theme="dark"] .signup-card .lead-text {
    color: #cbd5db !important;
}

[data-bs-theme="dark"] .forgot-password-card .form-control,
[data-bs-theme="dark"] .login-card .form-control,
[data-bs-theme="dark"] .reset-password-card .form-control,
[data-bs-theme="dark"] .signup-card .form-control {
    background-color: #374151;
    border-color: #4a5568;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .forgot-password-card .form-control:focus,
[data-bs-theme="dark"] .login-card .form-control:focus,
[data-bs-theme="dark"] .reset-password-card .form-control:focus,
[data-bs-theme="dark"] .signup-card .form-control:focus {
    background-color: #1e293b;
    border-color: #60a5fa;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .forgot-password-card .form-label,
[data-bs-theme="dark"] .login-card .form-label,
[data-bs-theme="dark"] .reset-password-card .form-label,
[data-bs-theme="dark"] .signup-card .form-label {
    color: #cbd5db;
}

[data-bs-theme="dark"] .forgot-password-icon i,
[data-bs-theme="dark"] .login-icon i,
[data-bs-theme="dark"] .reset-password-icon i {
    color: #34d399 !important;
}

[data-bs-theme="dark"] .divider {
    border-top-color: #4a5568;
}

[data-bs-theme="dark"] .breadcrumb-item a {
    color: #60a5fa;
}

[data-bs-theme="dark"] .breadcrumb-item.active {
    color: #cbd5e0;
}

/* Dark mode support for auth containers */
[data-bs-theme="dark"] .forgot-password-container,
[data-bs-theme="dark"] .login-page-container,
[data-bs-theme="dark"] .reset-password-container {
    background: transparent !important;
}

/* Dark mode support for FAQ cards and panels */
[data-bs-theme="dark"] .faq-content-card {
    background: #2d3748 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .faq-panel {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

[data-bs-theme="dark"] .faq-panel .panel-heading {
    background-color: #374151 !important;
}

[data-bs-theme="dark"] .faq-panel .panel-body {
    background-color: #2d3748 !important;
    border-color: #4a5568;
    color: #cbd5db;
}

/* Dark mode support for timeline */
[data-bs-theme="dark"] .timeline-content {
    background: #2d3748 !important;
    border-color: #4a5568;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .timeline-header h5 {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .timeline-body,
[data-bs-theme="dark"] .timeline-footer {
    border-color: #4a5568;
    color: #cbd5db;
}

/* Dark mode support for info boxes (password requirements, etc.) */
[data-bs-theme="dark"] .info-box {
    background-color: rgba(2, 132, 199, 0.15);
    border-color: #0284c7;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .info-box strong {
    color: #60a5fa;
    font-weight: 700;
}

[data-bs-theme="dark"] .info-box ul {
    color: #cbd5db;
}

[data-bs-theme="dark"] .info-box ul li {
    color: #cbd5db;
}

/* Dark mode support for form help text */
[data-bs-theme="dark"] .help-block {
    color: #94a3b8;
}

[data-bs-theme="dark"] .help-block.text-danger {
    color: #f87171 !important;
}

/* Dark mode support for password strength indicator */
[data-bs-theme="dark"] .password-strength {
    background-color: #1e293b;
}

/* ========================================================================
   From: members/signup.html.twig
   ======================================================================== */

.password-strength {
        height: 5px;
        margin-top: 5px;
        border-radius: 3px;
        transition: all 0.3s;
    }
    .password-strength.weak { background-color: #dc3545; width: 33%; }
    .password-strength.medium { background-color: #ffc107; width: 66%; }
    .password-strength.strong { background-color: #28a745; width: 100%; }

    .form-control.is-invalid {
        border-color: #dc3545;
    }
    .form-control.is-valid {
        border-color: #28a745;
    }
    .invalid-feedback {
        display: block;
        color: #dc3545;
        font-size: 0.875rem;
        margin-top: 0.25rem;
    }
    .character-count {
        font-size: 0.875rem;
        color: #6c757d;
        text-align: right;
        margin-top: 0.25rem;
    }
    .character-count.text-danger {
        color: #dc3545 !important;
    }

/* ========================================================================
   From: members/auth/forgot-password.html.twig
   ======================================================================== */

.forgot-password-container {

            margin: 50px auto;
            padding: 30px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .form-control {
            margin-bottom: 15px;
        }
        .btn-reset {
            width: 100%;
            padding: 12px;
            font-size: 16px;
        }
        .back-to-login {
            text-align: center;
            margin-top: 20px;
        }
        .error-message {
            background-color: #f8d7da;
            color: #721c24;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 15px;
            border: 1px solid #f5c6cb;
        }
        .success-message {
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 15px;
            border: 1px solid #c3e6cb;
        }
        .info-message {
            background-color: #d1ecf1;
            color: #0c5460;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 15px;
            border: 1px solid #bee5eb;
        }
        .form-row {
            display: flex;
            gap: 15px;
        }
        .form-row .form-group {
            flex: 1;
        }

/* ========================================================================
   From: members/auth/login.html.twig
   ======================================================================== */

.login-page-container {
            max-width: 450px;
            margin: 0 auto;
        }

        .login-card {
            background: white;
            border: none;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            padding: 40px;
        }

        .login-icon {
            text-align: center;
            margin-bottom: 25px;
        }

        .login-icon i {
            font-size: 4rem;
            color: #337ab7;
        }

        .login-card h1 {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: #333;
        }

        .form-control-lg {
            height: 46px;
            font-size: 16px;
        }

        .btn-block {
            width: 100%;
        }

        .btn-login {
            padding: 12px;
            font-size: 16px;
            font-weight: 600;
        }

        .forgot-password {
            text-align: center;
            margin-top: 15px;
        }

        .forgot-password a {
            color: #777;
            text-decoration: none;
        }

        .forgot-password a:hover {
            color: #337ab7;
            text-decoration: underline;
        }

        .divider {
            margin: 30px 0;
            border-top: 1px solid #e9ecef;
        }

        .signup-section {
            text-align: center;
        }

        .signup-section h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #333;
        }

        .signup-section p {
            color: #666;
            margin-bottom: 20px;
        }

        .breadcrumb {
            background-color: transparent;
            padding: 8px 0;
            margin-bottom: 20px;
        }

        .breadcrumb > li + li:before {
            content: ">\00a0";
        }

/* ========================================================================
   From: members/videos.html.twig
   ======================================================================== */

/* Video Modal Responsive Styles */
#videoModal .modal-dialog {
    max-width: 95vw;
    margin: 1rem auto;
}

@media (min-width: 768px) {
    #videoModal .modal-dialog {
        max-width: 90vw;
        margin: 1.75rem auto;
    }
}

@media (min-width: 992px) {
    #videoModal .modal-dialog {
        max-width: 80vw;
        margin: 1.75rem auto;
    }
}

@media (min-width: 1200px) {
    #videoModal .modal-dialog {
        max-width: 1140px;
        margin: 1.75rem auto;
    }
}

/* Video Container - Maintains 16:9 aspect ratio */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile optimization */
@media (max-width: 576px) {
    #videoModal .modal-header {
        padding: 0.5rem 1rem;
    }

    #videoModal .modal-title {
        font-size: 1rem;
    }

    #videoModal .modal-footer {
        padding: 0.5rem;
    }

    #videoModal .modal-footer .btn {
        font-size: 0.875rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Drag & Drop Zone */
.drop-zone {
    border: 2px dashed #ced4da;
    border-radius: 0.375rem;
    padding: 3rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.drop-zone:hover,
.drop-zone.drag-over {
    border-color: #0d6efd;
    background-color: #e7f1ff;
}

.drop-zone.drag-over {
    transform: scale(1.02);
}

/* Video Card Styles */
.video-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background-color: #000;
    aspect-ratio: 16/9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.video-thumbnail:hover .play-overlay {
    opacity: 1;
}

/* File List Styles */
#fileList .file-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
}

#fileList .file-item i {
    margin-right: 0.5rem;
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* ========================================================================
   From: members/messages/view.html.twig
   ======================================================================== */

.jp-audio {
                width: 100% !important;
            }

/* ========================================================================
   From: members/messages/view.html.twig
   ======================================================================== */

.single-gallery-image {
                height: 350px !important;
            }
            .single-gallery-image div {
                height: 350px;
                line-height: 350px;
            }
            .single-gallery-image div p {
                display: block;
                color: white;
                font-weight: bold;
                font-size: larger;
            }

/* ========================================================================
   From: members/compose.html.twig
   ======================================================================== */

textarea {
    resize: vertical;
    min-height: 200px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* ========================================================================
   From: members/layouts/base.html.twig
   ======================================================================== */

.members-nav {
            background-color: #1f2937;
            border-bottom: 1px solid #374151;
        }
        .members-nav a {
            color: #d1d5db;
            text-decoration: none;
            padding: 0.5rem 1rem;
            display: inline-block;
        }
        .members-nav a:hover {
            color: #f9fafb;
            background-color: #374151;
        }

/* ========================================================================
   From: members/inbox-read.html.twig
   ======================================================================== */

.message-content {
    font-size: 1.05rem;
    line-height: 1.7;
}
.conversation-thread .card {
    border-left-width: 3px;
}

/* ========================================================================
   From: members/profile.html.twig
   ======================================================================== */

.password-strength {
    height: 5px;
    border-radius: 3px;
    transition: all 0.3s;
    background-color: #e9ecef;
}
.password-strength.weak { background-color: #dc3545; width: 33%; }
.password-strength.medium { background-color: #ffc107; width: 66%; }
.password-strength.strong { background-color: #28a745; width: 100%; }

/* ========================================================================
   From: members/dashboard.html.twig
   ======================================================================== */

.welcome-section {
    margin-bottom: 30px;
    padding: 20px 0;
}

.message-preview {
    padding: 10px 0;
}

.message-preview.unread {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: -5px -15px;
}

.message-preview.unread h6 {
    font-weight: bold;
}

.profile-info p {
    margin-bottom: 8px;
}

.account-actions .btn {
    margin-bottom: 8px;
}

.card {
    margin-bottom: 20px;
}

/* ========================================================================
   From: payments/cancelled.html.twig
   ======================================================================== */

.cancelled-container {
            max-width: 600px;
            margin: 50px auto;
            padding: 40px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
        }
        .cancelled-icon {
            font-size: 80px;
            color: #ffc107;
            margin-bottom: 20px;
        }
        .cancelled-title {
            color: #856404;
            margin-bottom: 15px;
        }
        .payment-info {
            background: #fff3cd;
            padding: 20px;
            border-radius: 6px;
            border-left: 4px solid #ffc107;
            margin: 30px 0;
            text-align: left;
        }

/* Dark mode support for payment cancelled page */
[data-bs-theme="dark"] .cancelled-container {
    background: #2d3748;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: #e2e8f0;
}

[data-bs-theme="dark"] .cancelled-icon {
    color: #fbbf24;
}

[data-bs-theme="dark"] .cancelled-title {
    color: #fbbf24;
}

[data-bs-theme="dark"] .payment-info {
    background: rgba(251, 191, 36, 0.15);
    border-left-color: #fbbf24;
    color: #e2e8f0;
}

/* ========================================================================
   From: payments/pay.html.twig
   ======================================================================== */

.payment-container {
            max-width: 600px;
            margin: 50px auto;
            padding: 30px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .payment-summary {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 6px;
            margin-bottom: 30px;
        }
        .payment-amount {
            font-size: 2em;
            font-weight: bold;
            color: #0070ba;
            margin: 10px 0;
        }
        .payment-description {
            color: #666;
            margin-bottom: 10px;
        }
        #paypal-button-container {
            margin-top: 20px;
        }

/* Dark mode support for payment page */
[data-bs-theme="dark"] .payment-container {
    background: #2d3748;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: #e2e8f0;
}

[data-bs-theme="dark"] .payment-summary {
    background: #374151;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .payment-description {
    color: #cbd5db;
}

[data-bs-theme="dark"] .payment-amount {
    color: #60a5fa;
}

[data-bs-theme="dark"] .alert-info {
    background-color: rgba(2, 132, 199, 0.15);
    border-color: #0284c7;
    color: #60a5fa;
}

[data-bs-theme="dark"] .btn-link {
    color: #60a5fa;
}

[data-bs-theme="dark"] .btn-link:hover {
    color: #93c5fd;
}

[data-bs-theme="dark"] .text-muted {
    color: #94a3b8 !important;
}

/* ========================================================================
   From: payments/success.html.twig
   ======================================================================== */

.success-container {
            max-width: 700px;
            margin: 50px auto;
            padding: 40px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
        }
        .success-icon {
            font-size: 80px;
            color: #28a745;
            margin-bottom: 20px;
        }
        .success-title {
            color: #28a745;
            margin-bottom: 15px;
        }
        .payment-details {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 6px;
            margin: 30px 0;
            text-align: left;
        }
        .detail-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #dee2e6;
        }
        .detail-row:last-child {
            border-bottom: none;
        }
        .detail-label {
            font-weight: 600;
            color: #666;
        }
        .detail-value {
            color: #333;
        }
        .amount-highlight {
            font-size: 1.5em;
            color: #0070ba;
            font-weight: bold;
        }
        .next-steps {
            background: #e7f3ff;
            padding: 20px;
            border-radius: 6px;
            border-left: 4px solid #0070ba;
            margin: 20px 0;
            text-align: left;
        }

/* Dark mode support for payment success page */
[data-bs-theme="dark"] .success-container {
    background: #2d3748;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: #e2e8f0;
}

[data-bs-theme="dark"] .success-icon {
    color: #34d399;
}

[data-bs-theme="dark"] .success-title {
    color: #34d399;
}

[data-bs-theme="dark"] .payment-details {
    background: #374151;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .payment-details h4 {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .detail-row {
    border-bottom-color: #4a5568;
}

[data-bs-theme="dark"] .detail-label {
    color: #cbd5db;
}

[data-bs-theme="dark"] .detail-value {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .detail-value code {
    background: #1a202c;
    color: #f687b3;
    padding: 2px 6px;
    border-radius: 3px;
}

[data-bs-theme="dark"] .amount-highlight {
    color: #60a5fa;
}

[data-bs-theme="dark"] .next-steps {
    background: rgba(2, 132, 199, 0.15);
    border-left-color: #0284c7;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .next-steps h5 {
    color: #60a5fa;
}

[data-bs-theme="dark"] .alert-info {
    background-color: rgba(2, 132, 199, 0.15);
    border-color: #0284c7;
    color: #60a5fa;
}

[data-bs-theme="dark"] .badge-success {
    background-color: #34d399;
    color: #1f2937;
}

[data-bs-theme="dark"] .badge-warning {
    background-color: #fbbf24;
    color: #1f2937;
}

[data-bs-theme="dark"] .lead {
    color: #cbd5db;
}

/* ========================================================================
   From: faqs/show.html.twig
   ======================================================================== */

/* Single FAQ Page Styling - COMMENTED OUT - Purple removed */
/*
    .faq-single-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 30px;
        margin: 15px 0px 5px 0px;
        border-radius: 5px;
    }

    .faq-single-header h1 {
        margin: 0 0 15px 0;
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.4;
    }
*/

    .faq-meta-badges {
        margin-bottom: 10px;
    }

    .faq-meta-badges .label {
        margin-right: 8px;
        padding: 5px 10px;
        font-size: 0.85rem;
    }

    .faq-content-card {
        background: white;
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 25px;
    }

    .faq-answer-content {
        padding: 30px;
        line-height: 1.8;
        color: #333;
        font-size: 1.05rem;
    }

    .faq-answer-content h1,
    .faq-answer-content h2,
    .faq-answer-content h3,
    .faq-answer-content h4,
    .faq-answer-content h5,
    .faq-answer-content h6 {
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        color: #333;
        font-weight: 600;
    }

    .faq-answer-content p {
        margin-bottom: 1rem;
    }

    .faq-answer-content ul,
    .faq-answer-content ol {
        margin-bottom: 1rem;
        padding-left: 2rem;
    }

    .faq-answer-content li {
        margin-bottom: 0.5rem;
    }

    .faq-answer-content blockquote {
        border-left: 4px solid #667eea;
        padding-left: 1rem;
        margin: 1.5rem 0;
        font-style: italic;
        background-color: #f8f9fa;
        padding: 15px 15px 15px 20px;
        border-radius: 4px;
    }

    .faq-answer-content a {
        color: #667eea;
        text-decoration: underline;
    }

    .faq-answer-content a:hover {
        color: #764ba2;
    }

    .faq-answer-content img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin: 1rem 0;
    }

    .faq-answer-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
        border: 1px solid #ddd;
    }

    .faq-answer-content table th,
    .faq-answer-content table td {
        padding: 12px;
        text-align: left;
        border: 1px solid #ddd;
    }

    .faq-answer-content table th {
        background-color: #f5f5f5;
        font-weight: 600;
    }

    .faq-answer-content code {
        background-color: #f4f4f4;
        padding: 2px 6px;
        border-radius: 3px;
        font-family: 'Monaco', 'Consolas', monospace;
        font-size: 0.9em;
    }

    .faq-answer-content pre {
        background-color: #2d2d2d;
        color: #f8f8f8;
        padding: 15px;
        border-radius: 4px;
        overflow-x: auto;
        margin: 1rem 0;
    }

    .faq-answer-content pre code {
        background-color: transparent;
        padding: 0;
        color: inherit;
    }

    .faq-meta-footer {
        padding: 20px 30px;
        border-top: 1px solid #e9ecef;
        background-color: #f8f9fa;
        font-size: 0.9rem;
        color: #666;
    }

    .faq-navigation {
        margin-bottom: 25px;
    }

    .faq-share-buttons {
        display: inline-block;
    }

    .faq-share-buttons .btn {
        margin-left: 5px;
    }

    .related-faqs-card {
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        background: white;
        margin-top: 25px;
    }

    .related-faqs-card .card-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 8px 8px 0 0;
    }

    .related-faqs-card .card-title {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
    }

    [data-bs-theme="dark"] .related-faqs-card {
        background: #2d3748;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    [data-bs-theme="dark"] .related-faq-item {
        border-bottom-color: #4a5568;
    }

    [data-bs-theme="dark"] .related-faq-item:hover {
        background-color: #374151;
    }

    [data-bs-theme="dark"] .related-faq-item a {
        color: #e2e8f0;
    }

    [data-bs-theme="dark"] .related-faq-item a:hover {
        color: #a78bfa;
    }

    .related-faq-item {
        padding: 15px 20px;
        border-bottom: 1px solid #e9ecef;
        transition: background-color 0.3s ease;
    }

    .related-faq-item:last-child {
        border-bottom: none;
    }

    .related-faq-item:hover {
        background-color: #f8f9fa;
    }

    .related-faq-item a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
    }

    .related-faq-item a:hover {
        color: #667eea;
    }

    .breadcrumb {
        background-color: transparent;
        padding: 8px 0;
        margin-bottom: 20px;
    }

    .breadcrumb > li + li:before {
        content: ">\00a0";
    }

/* ========================================================================
   From: faqs/index.html.twig
   ======================================================================== */

/* FAQ Page Enhancements - STYLES MOVED TO concept-5-moon-phases.css */

/* COMMENTED OUT - Purple backgrounds removed, now using clean minimal design in concept-5
    .faq-page-header {
        padding: 40px 20px;
        margin: -15px -15px 30px -15px;
        border-radius: 5px;
        text-align: center;
    }

    .faq-page-header h1 {
        margin: 0 0 10px 0;
        font-size: 2.5rem;
        font-weight: 600;
    }

    .faq-page-header p {
        margin: 0;
        opacity: 0.95;
        font-size: 1.1rem;
    }

    .faq-category-card {
        border: none;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 25px;
        transition: box-shadow 0.3s ease;
    }

    .faq-category-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    .faq-category-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 20px;
        border-bottom: none;
    }

    .faq-category-header h2 {
        margin: 0;
        font-size: 1.6rem;
        font-weight: 600;
    }

    .faq-category-header h2 i {
        margin-right: 10px;
        opacity: 0.9;
    }

    .faq-category-header p {
        margin: 10px 0 0 0;
        opacity: 0.95;
        font-size: 0.95rem;
    }
*/

/* COMMENTED OUT - Styles moved to concept-5-moon-phases.css
    .panel-group {
        margin-bottom: 0;
    }

    .faq-panel {
        border: none;
        border-bottom: 1px solid #e9ecef;
        box-shadow: none;
        border-radius: 0 !important;
        background: white;
    }

    .faq-panel:last-child {
        border-bottom: none;
    }

    .faq-panel .panel-heading {
        background-color: #fff;
        border: none;
        padding: 0;
    }

    .faq-panel .panel-heading a {
        display: block;
        padding: 18px 20px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
        transition: all 0.3s ease;
        position: relative;
    }

    .faq-panel .panel-heading a:hover {
        background-color: #f8f9fa;
        color: #667eea;
    }

    .faq-panel .panel-heading a:after {
        content: "\f078";
        font-family: "FontAwesome";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #667eea;
        transition: transform 0.3s ease;
    }

    .faq-panel .panel-heading a.collapsed:after {
        transform: translateY(-50%) rotate(-90deg);
    }

    .faq-panel .panel-body {
        padding: 20px;
        background-color: #fff;
        line-height: 1.8;
        color: #555;
        border-top: 1px solid #e9ecef;
    }
*/

    .faq-answer h1, .faq-answer h2, .faq-answer h3,
    .faq-answer h4, .faq-answer h5, .faq-answer h6 {
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        color: #333;
    }

    .faq-answer p {
        margin-bottom: 1rem;
    }

    .faq-answer ul, .faq-answer ol {
        margin-bottom: 1rem;
        padding-left: 1.5rem;
    }

    .faq-answer blockquote {
        border-left: 4px solid #667eea;
        padding-left: 1rem;
        margin: 1rem 0;
        font-style: italic;
        color: #666;
    }

    .faq-badge {
        font-size: 0.75rem;
        padding: 3px 8px;
        border-radius: 10px;
        font-weight: 600;
        margin-left: 8px;
    }

    .badge-featured {
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
        color: #333;
    }

    .badge-category {
        background-color: #6c757d;
        color: white;
    }

    .faq-meta {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
    }

    .faq-meta a {
        color: #667eea;
        text-decoration: none;
    }

    .faq-meta a:hover {
        color: #764ba2;
        text-decoration: underline;
    }

    .faq-view-count {
        color: #888;
        font-size: 0.85rem;
        font-weight: normal;
        margin-left: 15px;
    }

/* COMMENTED OUT - Sidebar FAQ widget styles moved to concept-5
    .sidebar-faq-widget {
        border: none;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

    .sidebar-faq-widget .panel-heading {
        font-weight: 600;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        padding: 15px;
    }
*/

    .sidebar-faq-item {
        padding: 15px;
        border-bottom: 1px solid #e9ecef;
        transition: background-color 0.3s ease;
    }

    .sidebar-faq-item:last-child {
        border-bottom: none;
    }

    .sidebar-faq-item:hover {
        background-color: #f8f9fa;
    }

    .sidebar-faq-item a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        display: block;
        margin-bottom: 5px;
    }

    .sidebar-faq-item a:hover {
        color: #667eea;
    }

    .sidebar-faq-item small {
        color: #888;
        font-size: 0.85rem;
    }

    .empty-state {
        text-align: center;
        padding: 60px 20px;
    }

    .empty-state i {
        font-size: 4rem;
        color: #ddd;
        margin-bottom: 20px;
    }

    .empty-state h3 {
        color: #999;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .empty-state p {
        color: #aaa;
    }

/* ========================================================================
   From: articles/show.html.twig
   ======================================================================== */

.article-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content blockquote {
    border-left: 4px solid #007bff;
    margin: 1.5rem 0;
    padding-left: 1rem;
    font-style: italic;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 0.375rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

/* ========================================================================
   From: articles/index.html.twig
   ======================================================================== */

/* Modern Article Cards with Enhanced Visual Design */
.article-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(107, 142, 35, 0.1);
    border-radius: 20px;
    border-left: 8px solid #6B8E23 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem !important;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6B8E23, #8FBC8F, #98D982, #6B8E23);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.article-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(107, 142, 35, 0.3);
    border-left-color: #8FBC8F !important;
}

.article-card:hover::before {
    opacity: 1;
}

/* Article Title with Better Typography */
.article-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e3a1f;
    letter-spacing: -0.02em;
    padding: 0 10px;
}

.article-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.article-link:hover {
    color: #6B8E23 !important;
    text-decoration: none;
}

.article-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(90deg, #6B8E23, #8FBC8F);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.article-link:hover::after {
    width: 100%;
}

/* Enhanced Article Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.05), rgba(143, 188, 143, 0.05));
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(107, 142, 35, 0.1);
}

.meta-item {
    color: #5a6c5b;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.meta-item i {
    color: #6B8E23;
    font-size: 0.9rem;
    margin-right: 8px;
}

/* Enhanced Article Excerpt */
.article-excerpt {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5a4b;
    text-align: justify;
    margin-bottom: 2.5rem;
    padding: 0 10px;
    position: relative;
}

.article-excerpt::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -10px;
    font-size: 3rem;
    color: rgba(107, 142, 35, 0.2);
    font-family: serif;
    line-height: 1;
}

/* Premium Read More Button */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: linear-gradient(135deg, #6B8E23 0%, #8FBC8F 50%, #5a7a1f 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.3);
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(107, 142, 35, 0.4);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.read-more-btn i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Enhanced Search Form */
.input-group-text {
    background: linear-gradient(135deg, #6B8E23, #8FBC8F) !important;
    border: none !important;
    color: white !important;
}

/* Enhanced Pagination */
.page-link {
    color: #6B8E23;
    border: 2px solid #dee2e6;
    padding: 15px 22px;
    font-weight: 600;
    border-radius: 12px !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.page-link:hover {
    color: white;
    background: linear-gradient(135deg, #6B8E23, #8FBC8F);
    border-color: #6B8E23;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 142, 35, 0.3);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #6B8E23, #5a7a1f);
    border-color: #6B8E23;
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.4);
    transform: translateY(-2px);
}

/* Enhanced Header */
.articles-header {
    padding: 0 20px;
    margin-bottom: 2rem;
}

.articles-main-title {
    background: linear-gradient(135deg, #6B8E23, #8FBC8F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2.8rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    padding-left: 10px;
}

.articles-count .badge {
    background: linear-gradient(135deg, #6B8E23, #8FBC8F) !important;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.2);
}

/* Premium Search Container */
.search-container {
    padding: 0;
    margin-bottom: 2rem;
}

.search-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(107, 142, 35, 0.15);
    border-radius: 25px;
    /*box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);*/
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    overflow: hidden;
}

.search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6B8E23, #8FBC8F, #98D982, #6B8E23);
}

.search-form {
    margin-bottom: 0;
}

.search-input-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.search-input-group {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid rgba(107, 142, 35, 0.2);
    border-radius: 50px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: #6B8E23;
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1), inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-icon {
    padding: 0 20px;
    color: #6B8E23;
    font-size: 1.1rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 20px 18px 0;
    font-size: 1.05rem;
    background: transparent;
    color: #495057;
}

.search-input::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

.search-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.search-btn {
    background: linear-gradient(135deg, #6B8E23, #8FBC8F);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(107, 142, 35, 0.4);
}

.clear-btn {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 2px solid rgba(108, 117, 125, 0.2);
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.clear-btn:hover {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    color: #dc3545;
    transform: translateY(-2px);
    text-decoration: none;
}

.search-results-info {
    margin-top: 20px;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.05), rgba(143, 188, 143, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    color: #495057;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-input-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .search-input-group {
        min-width: auto;
        width: 100%;
    }

    .search-buttons {
        width: 100%;
        justify-content: center;
    }

    .articles-main-title {
        font-size: 2.2rem;
        padding-left: 5px;
    }

    .search-container {
        padding: 0 10px;
    }

    .articles-header {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .search-card {
        padding: 20px;
    }

    .search-btn,
    .clear-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .articles-main-title {
        font-size: 1.8rem;
    }
}

/* Header background moved to theme-specific CSS files */

@media (max-width: 768px) {
    .article-title {
        font-size: 1.6rem;
    }

    .article-excerpt {
        font-size: 1rem;
        line-height: 1.6;
    }

    .article-meta {
        gap: 1rem;
        padding: 15px 20px;
    }

    .meta-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .read-more-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        /* background-image: url(/assets/images/header480.jpg) !important; */ /* Disabled for header concepts */
    }

    .article-card .card-body {
        padding: 2.5rem !important;
    }

    .article-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 320px) {
    body {
        /* background-image: url(/assets/images/header320.jpg) !important; */ /* Disabled for header concepts */
    }

    .article-card .card-body {
        padding: 2rem !important;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.article-card:nth-child(1) { animation-delay: 0.1s; }
.article-card:nth-child(2) { animation-delay: 0.2s; }
.article-card:nth-child(3) { animation-delay: 0.3s; }
.article-card:nth-child(4) { animation-delay: 0.4s; }
.article-card:nth-child(5) { animation-delay: 0.5s; }

/* Loading state improvement */
.articles-list {
    min-height: 400px;
}

/* ========================================================================
   From: layouts/base.html.twig
   ======================================================================== */

.calls-banner {
            background-color: #6B8E23;
            color: #ffffff;
            padding: 15px;
            font-size: 140%;
        }
        .calls-banner img {
            display: block;
            margin-left: auto;
            margin-right: auto;
            width: 50%;
            max-height: 100px;
            max-width: 100px;
        }

/* ========================================================================
   From: checkout/review.html.twig
   ======================================================================== */

.sticky-top {
        position: -webkit-sticky;
        position: sticky;
    }

    .card {
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .card-header {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    address {
        line-height: 1.6;
    }

    .table td, .table th {
        vertical-align: middle;
    }

    .progress {
        background-color: #e9ecef;
    }

/* ========================================================================
   From: checkout/success.html.twig
   ======================================================================== */

.success-banner {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    }

    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
    }

    .card {
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .card-header {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    address {
        line-height: 1.6;
    }

    .table td, .table th {
        vertical-align: middle;
    }

    .progress {
        background-color: #e9ecef;
    }

/* ========================================================================
   Dark Mode Support - Bootstrap 5 data-bs-theme="dark"
   ======================================================================== */

[data-bs-theme="dark"],
[data-bs-theme="light"] {
    /* Right Column - Recent Articles & Links */
    h4 a {
        color: #8FBC8F !important;
    }

    h4 a:hover {
        color: #98D982 !important;
    }

    /* Special Offers Card */
    .card.border-success {
        background-color: #1e2a1e;
        border-color: #6B8E23 !important;
    }

    .card.border-success .card-body {
        /*background-color: #1e2a1e;*/
        background-color: #3c593c;
        color: #ffffff;
    }

    .card.border-success h4 a {
        color: #8FBC8F !important;
    }

    .card.border-success p {
        color: #cbd5db;
    }
}
[data-bs-theme="dark"] {
    /* Article Cards */
    .article-card {
        background: rgba(45, 55, 72, 0.95) !important;
        border-color: rgba(139, 188, 143, 0.2) !important;
        color: #e2e8f0;
    }
    
    .article-title {
        color: #e2e8f0 !important;
    }
    
    .article-link {
        color: #e2e8f0 !important;
    }
    
    .article-link:hover {
        color: #8FBC8F !important;
    }
    
    .article-excerpt {
        color: #cbd5db !important;
    }
    
    .article-excerpt::before {
        color: rgba(143, 188, 143, 0.2) !important;
    }
    
    /* Search Card Dark Mode */
    .search-card {
        background: rgba(45, 55, 72, 0.95) !important;
        border-color: rgba(139, 188, 143, 0.2) !important;
    }
    
    .search-input-group {
        background: rgba(30, 41, 59, 0.8) !important;
        border-color: rgba(143, 188, 143, 0.3) !important;
    }
    
    .search-input {
        color: #e2e8f0 !important;
        background: transparent !important;
    }
    
    .search-input::placeholder {
        color: #94a3b8 !important;
    }
    
    .search-results-info {
        background: rgba(107, 142, 35, 0.15) !important;
        border-color: rgba(143, 188, 143, 0.2) !important;
        color: #cbd5db !important;
    }
    
    .search-results-info strong {
        color: #8FBC8F !important;
    }
    
    /* List Group Items (Sidebar Links) */
    .list-group-item {
        background-color: #2d3748;
        border-color: #4a5568;
        color: #cbd5db;
    }
    
    .list-group-item:hover {
        background-color: #374151;
        color: #8FBC8F;
    }
    
    .list-group-item a {
        color: #8FBC8F !important;
    }
    
    .list-group-item a:hover {
        color: #98D982 !important;
    }
    
    /* No Results Card */
    .card.bg-light-gray {
        background-color: #2d3748 !important;
    }
    
    .card.bg-light-gray h4,
    .card.bg-light-gray p {
        color: #cbd5db !important;
    }
    
    .card.bg-light-gray .text-muted {
        color: #94a3b8 !important;
    }
    
    /* Pagination Dark Mode */
    .page-link {
        background-color: #2d3748;
        border-color: #4a5568;
        color: #8FBC8F;
    }
    
    .page-link:hover {
        background: linear-gradient(135deg, #6B8E23, #8FBC8F);
        border-color: #6B8E23;
        color: white;
    }
    
    .page-item.active .page-link {
        background: linear-gradient(135deg, #6B8E23, #5a7a1f);
        border-color: #6B8E23;
        color: white;
    }
    
    .page-item.disabled .page-link {
        background-color: #1a202c;
        border-color: #2d3748;
        color: #4a5568;
    }
    
    /* Article Meta */
    .article-meta {
        background: linear-gradient(135deg, rgba(107, 142, 35, 0.15), rgba(143, 188, 143, 0.15)) !important;
        border-color: rgba(143, 188, 143, 0.2) !important;
    }
    
    .meta-item {
        background: rgba(45, 55, 72, 0.8) !important;
        color: #cbd5db !important;
    }
    
    /* Header Title */
    .articles-main-title {
        background: linear-gradient(135deg, #8FBC8F, #98D982);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* ========================================================================
   Special Offers - Dark Mode Support
   ======================================================================== */

[data-bs-theme="dark"] {
    /* Special Offer Cards */
    .card {
        background-color: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .card-body {
        background-color: transparent;
        color: #e2e8f0;
    }
    
    /* Card Headers */
    .card-header {
        background-color: #374151;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .card-header.bg-info {
        background-color: #0284c7 !important;
        color: white !important;
    }
    
    .card-header.bg-primary {
        background-color: #2563eb !important;
        color: white !important;
    }
    
    .card-header.bg-warning {
        background-color: #f59e0b !important;
        color: #1f2937 !important;
    }
    
    /* Page Title */
    .page-title {
        color: #e2e8f0;
    }
    
    /* Tables in Dark Mode */
    .table {
        color: #e2e8f0;
        border-color: #4a5568;
    }
    
    .table thead th {
        background-color: #374151;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .table-striped tbody tr:nth-of-type(odd) {
        background-color: rgba(255, 255, 255, 0.03);
    }
    
    .table-striped tbody tr:nth-of-type(even) {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    .table td, .table th {
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    /* Breadcrumbs */
    .breadcrumb {
        background-color: transparent;
    }
    
    .breadcrumb-item a {
        color: #60a5fa;
    }
    
    .breadcrumb-item a:hover {
        color: #93c5fd;
    }
    
    .breadcrumb-item.active {
        color: #cbd5e0;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        color: #6b7280;
    }
    
    /* Text Colors */
    .text-info {
        color: #60a5fa !important;
    }
    
    .text-success {
        color: #34d399 !important;
    }
    
    .text-warning {
        color: #fbbf24 !important;
    }
    
    /* Border Colors */
    .border-info {
        border-color: #0284c7 !important;
    }
    
    .border-primary {
        border-color: #2563eb !important;
    }
    
    .border-warning {
        border-color: #f59e0b !important;
    }
}

    /* Alerts in Dark Mode */
    .alert-info {
        background-color: rgba(2, 132, 199, 0.15);
        border-color: #0284c7;
        color: #60a5fa;
    }
    
    /* Horizontal Rules */
    hr {
        border-color: #4a5568;
        opacity: 0.5;
    }
    
    .hr-thick-gray {
        border-color: #4a5568;
    }
    
    /* Strong text should be visible */
    strong {
        color: #f3f4f6;
    }
    
    /* Paragraph text */
    p {
        color: #e2e8f0;
    }
}
