/* ==========================================================
   Component Styles
   Cart modal, checkout modal, notifications, pricing
   ========================================================== */

/* ---- Magic Link ---- */
.acct-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #ccc;
    font-size: 13px;
}
.acct-divider::before,
.acct-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.acct-btn--outline {
    width: 100%;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    background: #fff;
    color: var(--accent-color);
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    margin-top: 4px;
}
.acct-btn--outline:hover {
    background: var(--accent-color);
    color: #fff;
}

.acct-magic-success {
    text-align: center;
    padding: 20px;
    background: #f0f7f4;
    border-radius: 12px;
    border: 1px solid #c8e6c9;
}
.acct-magic-success i {
    font-size: 32px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}
.acct-magic-success p {
    margin: 0 0 12px;
    color: #333;
    font-size: 14px;
}

.acct-btn--text {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-family: inherit;
}

/* ---- Out of Stock State ---- */
.product__item--out-of-stock {
    opacity: 0.7;
}

.product__item--out-of-stock .product__item__pic {
    position: relative;
}

.out-of-stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
    pointer-events: none;
}

.out-of-stock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(150, 150, 150, 0.8);
    border-radius: 50%;
    color: #fff;
    cursor: default;
}

.price-muted {
    color: #aaa;
    text-decoration: line-through;
}

/* ---- Cart Modal ---- */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.cart-content {
    background: white;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 { margin: 0; font-weight: 700; }

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.cart-items {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: #f8f8f8;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; margin-bottom: 4px; }
.cart-item-notes { font-size: 12px; color: #888; font-style: italic; margin-bottom: 2px; }
.cart-item-price { font-size: 14px; color: #666; }

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.cart-item-total {
    font-weight: 700;
    min-width: 70px;
    text-align: right;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f8f8;
}

.cart-total { font-size: 18px; margin-bottom: 15px; }

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.empty-cart {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* ---- Product Quick-View Modal ---- */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-modal__content {
    background: white;
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.product-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #666;
    z-index: 1;
}

.product-modal__close:hover { color: #333; }

.product-modal__body {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.product-modal__img {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 16px;
    background-size: cover;
    background-position: center;
}

.product-modal__name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #252525;
}

.product-modal__price-row {
    margin-bottom: 16px;
}

.product-modal__price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.product-modal__unit {
    font-size: 14px;
    color: #888;
    margin-left: 4px;
}

.product-modal__qty label,
.product-modal__notes-wrap label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.product-modal__qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.product-modal__qty-controls input {
    width: 60px;
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.product-modal__notes-wrap {
    margin-bottom: 16px;
}

.product-modal__notes-wrap textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
    min-height: 60px;
}

.product-modal__notes-wrap textarea::placeholder {
    color: #999;
}

@media (max-width: 575.98px) {
    .product-modal__body { padding: 16px; }
    .product-modal__img { height: 160px; }
}

/* ---- Pricing Breakdown ---- */
.pricing-breakdown {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.pricing-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.pricing-line.total-line {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.tax-exempt-note { font-size: 11px; color: #888; font-style: italic; }

/* ---- Checkout Modal ---- */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.checkout-content {
    background: white;
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    margin: 20px auto;
}

.checkout-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-header h3 { margin: 0; font-weight: 700; }

.close-checkout {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.checkout-body { padding: 20px; }
.checkout-body h4 { margin-bottom: 15px; font-weight: 700; }

.checkout-body input[type="text"],
.checkout-body input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.pickup-notice {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.pickup-notice i { font-size: 24px; color: var(--accent-color); }
.pickup-instructions { font-size: 14px; color: #666; margin-bottom: 20px; }
.order-summary { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.checkout-total { font-size: 18px; margin-top: 15px; }
.payment-section { margin-bottom: 20px; }

.payment-methods label {
    display: block;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
}

.card-element {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 15px;
}

.place-order-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.checkout-pricing-breakdown {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.checkout-pricing-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}

.checkout-tax-exempt-note {
    font-size: 11px;
    color: #888;
    font-style: italic;
}

/* ---- Cart Notification ---- */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    z-index: 10001;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ---- Account Page ---- */
.acct-page {
    background: #f7f8fa;
    min-height: 60vh;
}

.account-section {
    padding: 40px 0 60px;
}

/* --- Auth Card (Logged Out) --- */
.acct-auth-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
    border: 1px solid #eee;
}

.acct-auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.acct-auth-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light, #40916C));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

.acct-auth-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.acct-auth-header p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.acct-forgot-row {
    text-align: right;
    margin: -6px 0 14px;
}

.acct-subhead {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
}

.acct-help-text {
    font-size: 13px;
    color: #666;
    line-height: 1.45;
    margin: 0 0 16px;
}

.acct-success-msg {
    font-size: 14px;
    color: #2d6a4f;
    background: #e8f5ef;
    border: 1px solid #b7e4c7;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

/* --- Tabs --- */
.account-tabs {
    list-style: none;
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    padding: 4px;
    border-bottom: none;
    background: #f0f1f3;
    border-radius: 14px;
}

.account-tabs li {
    cursor: pointer;
    font-weight: 600;
    color: #777;
    padding: 11px 20px;
    flex: 1;
    text-align: center;
    transition: all 0.25s ease;
    font-size: 14px;
    border-radius: 11px;
    user-select: none;
}

.account-tabs li:hover {
    color: #444;
}

.account-tabs li.active {
    color: #fff;
    background: var(--accent-color);
    box-shadow: 0 2px 8px rgba(45, 106, 79, 0.25);
}

/* --- Input Groups with Icons --- */
.acct-input-group {
    position: relative;
    margin-bottom: 14px;
}

.acct-input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 15px;
    transition: color 0.2s ease;
    pointer-events: none;
}

.acct-input-group input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    background: #fafafa;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    margin: 0;
}

.acct-input-group input:focus {
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

.acct-input-group input:focus + i,
.acct-input-group input:focus ~ i,
.acct-input-group:focus-within i {
    color: var(--accent-color);
}

.acct-input-group input::placeholder {
    color: #aaa;
}

.acct-input-group input:disabled {
    background: #f0f0f0;
    color: #999;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

/* --- Buttons --- */
.acct-btn {
    width: 100%;
    padding: 15px 24px;
    border: none;
    border-radius: 12px;
    background: var(--accent-color);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    margin-top: 6px;
    letter-spacing: 0.3px;
}

.acct-btn:hover {
    background: var(--accent-dark, #1B4332);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.2);
}

.acct-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.acct-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* --- Error Message --- */
.account-error {
    color: #dc3545;
    font-size: 13px;
    margin: 6px 0 10px;
    padding: 0;
    border-radius: 8px;
    background: transparent;
    min-height: 0;
}

.account-error:not(:empty) {
    padding: 10px 14px;
    background: #fef2f2;
    border: 1px solid #fde8e8;
}

/* --- Welcome Banner (Logged In) --- */
.acct-welcome-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
}

.acct-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light, #40916C));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: 1px;
}

.acct-welcome-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    text-align: left;
}

.acct-welcome-text {
    flex: 1;
    min-width: 0;
}

.acct-edit-btn {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #888;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.acct-edit-btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(45, 106, 79, 0.06);
}

.acct-welcome-text h2 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.acct-welcome-text p {
    font-size: 14px;
    color: #888;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Dashboard Cards --- */
.account-card {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
    margin-bottom: 24px;
    overflow: hidden;
}

.account-card h4 {
    margin: 0;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fafbfc;
    border-bottom: 1px solid #eee;
    letter-spacing: 0.2px;
}

.account-card h4 i {
    color: var(--accent-color);
    font-size: 18px;
    opacity: 0.9;
}

/* Profile form: body area */
.account-card .account-form,
.account-card form.account-form {
    padding: 24px;
}

.account-card .acct-input-group {
    margin-bottom: 16px;
}

.account-card .acct-input-group:last-of-type {
    margin-bottom: 20px;
}

.account-card .acct-btn {
    margin-top: 4px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
}

.acct-profile-edit-panel {
    margin-bottom: 24px;
}

.acct-profile-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.acct-profile-actions .acct-btn,
.acct-profile-actions .acct-btn-outline {
    flex: 0 0 auto;
    width: auto;
    min-width: 120px;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 0;
}

.acct-btn-outline {
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #ddd;
    background: #fff;
    color: #666;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.acct-btn-outline:hover {
    border-color: #999;
    color: #333;
    background: #f8f8f8;
}

.account-card > #orderHistoryList {
    padding: 24px;
}

/* --- Empty State --- */
.account-empty {
    color: #888;
    text-align: center;
    padding: 40px 16px;
    font-size: 15px;
}

.account-empty a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.account-empty a:hover {
    text-decoration: underline;
}

/* --- Order History --- */
.order-history-item {
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 12px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    background: #fafafa;
}

.order-history-item:hover {
    border-color: #ddd;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    background: #fff;
}

.order-history-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.order-id {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 15px;
}

.order-date {
    font-size: 13px;
    color: #999;
}

.order-status {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.order-status-pending { background: #fef3cd; color: #856404; }
.order-status-preparing { background: #d1ecf1; color: #0c5460; }
.order-status-ready { background: #d4edda; color: #155724; }
.order-status-completed { background: #e8e8e8; color: #555; }

.order-total {
    font-weight: 700;
    color: var(--accent-color);
    margin-left: auto;
    font-size: 16px;
}

.order-history-details {
    font-size: 14px;
    color: #666;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.order-history-details p {
    margin: 6px 0;
    display: flex;
    justify-content: space-between;
}

.order-count {
    font-weight: 600;
    color: #555;
}

/* --- Mobile Responsive --- */
@media (max-width: 767px) {
    .acct-auth-card {
        padding: 28px 20px 24px;
        border-radius: 16px;
    }
    .acct-auth-header h2 {
        font-size: 20px;
    }
    .acct-welcome-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 24px 20px;
    }
    .acct-edit-btn {
        top: 24px;
        right: 20px;
    }
    .acct-welcome-info {
        text-align: center;
    }
    .acct-welcome-text h2 {
        white-space: normal;
    }
    .account-card h4 {
        padding: 16px 18px;
    }
    .account-card .account-form,
    .account-card form.account-form,
    .account-card > #orderHistoryList {
        padding: 18px;
    }
}

.header__top__right__auth a {
    display: inline-block !important;
    margin-right: 16px;
}

/* Header cart: cart on left, account + signout on right */
.header__cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}

.header__cart__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__cart__left a {
    position: relative;
    color: #1c1c1c;
    text-decoration: none;
}

.header__cart__left a i {
    font-size: 18px;
    color: #1c1c1c;
    transition: color 0.2s ease;
}

.header__cart__left a:hover {
    color: var(--accent-color, #2D6A4F);
}

.header__cart__left a:hover i {
    color: var(--accent-color, #2D6A4F);
}

.header__cart__left a span {
    height: 13px;
    min-width: 13px;
    padding: 0 4px;
    background: var(--accent-color, #2D6A4F);
    font-size: 10px;
    color: #fff;
    line-height: 13px;
    text-align: center;
    font-weight: 700;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: -12px;
}

.header__cart__right {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__cart__right li {
    margin: 0;
}

.header__cart__right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header__cart__right a i {
    font-size: 18px;
    color: #1c1c1c;
}

.header__top__right__auth a:last-child {
    margin-right: 0;
}

/* Turnstile CAPTCHA widget */
.cf-turnstile {
    margin: 12px 0;
}

/* ---- Mobile Hamburger Menu ---- */
.humberger__menu__wrapper .slicknav_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.humberger__menu__wrapper .slicknav_nav li {
    list-style: none;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.humberger__menu__wrapper .slicknav_nav li:last-child {
    border-bottom: none;
}

.humberger__menu__wrapper .slicknav_nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
    border-bottom: none !important;
}

.humberger__menu__wrapper .slicknav_nav a::before {
    font-family: 'FontAwesome';
    font-size: 18px;
    color: var(--accent-color, #2D6A4F);
    width: 24px;
    text-align: center;
}

.humberger__menu__wrapper .slicknav_nav li:nth-child(1) a::before {
    content: '\f015';
}

.humberger__menu__wrapper .slicknav_nav li:nth-child(2) a::before {
    content: '\f07a';
}

.humberger__menu__wrapper .slicknav_nav li:nth-child(3) a::before {
    content: '\f095';
}

.humberger__menu__wrapper .slicknav_nav a:hover {
    color: var(--accent-color, #2D6A4F);
    background: rgba(45, 106, 79, 0.04);
}

.captcha-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
}
