:root {
    --foreground: #0f172a;
    --muted-foreground: #64748b;
    --primary: #1553A1;
    --primary-foreground: #ffffff;
    --secondary: #25B24F;
    --ring: #2563eb;
    --destructive: #dc2626;
    --input-border: #e2e8f0;
    --input-background: #ffffff;
    --default: #0A0A0A;

    /* For rgba usage */
    --ring-rgb: 37, 99, 235;
    --destructive-rgb: 220, 38, 38;
    --input-rgb: 255, 255, 255;
}

@font-face {
    font-family: "Noto Sans Bengali";
    src: url('../fonts/Noto_Sans_Bengali/NotoSansBengali-VariableFont_wdth,wght.ttf');
}

/* ------------------------------
   Layout Utilities
------------------------------ */

.lc-zc-hidden {
    display: none;
}
.lc-zc-flex {
    display: flex;
}
.lc-zc-flex-col {
    display: flex;
    flex-direction: column;
}

.lc-zc-grid {
    display: grid;
}

.lc-zc-grid-2 {
    grid-template-columns: 2fr 1fr;
}

.lc-zc-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.lc-zc-items-center {
    align-items: center;
}

.lc-zc-justify-center {
    justify-content: center;
}

.lc-zc-justify-between {
    justify-content: space-between;
}

.lc-zc-gap-2 { gap: 0.5rem; }
.lc-zc-gap-4 { gap: 1rem; }
.lc-zc-gap-6 { gap: 1.5rem; }
.lc-zc-gap-8 { gap: 2rem; }

.lc-zc-w-full {
    width: 100%;
}

/* ------------------------------
   Spacing Utilities
------------------------------ */

.lc-zc-p-4 { padding: 1rem; }
.lc-zc-p-6 { padding: 1.5rem; }

.lc-zc-mb-1 { margin-bottom: 0.25rem; }
.lc-zc-mb-2 { margin-bottom: 0.5rem; }
.lc-zc-mb-4 { margin-bottom: 1rem; }
.lc-zc-mb-6 { margin-bottom: 1.5rem; }
.lc-zc-mt-4 { margin-top: 1rem; }
.lc-zc-mt-6 { margin-top: 1.5rem; }


/* ------------------------------
   Typography Utilities
------------------------------ */

.lc-zc-text-xs { font-size: 0.75rem; }
.lc-zc-text-sm { font-size: 0.875rem; }
.lc-zc-text-base { font-size: 1rem; }
.lc-zc-text-lg { font-size: 1.125rem; }
.lc-zc-text-xl { font-size: 1.25rem; }
.lc-zc-text-2xl { font-size: 1.5rem; }

.lc-zc-font-noto-sans-bengali-medium { font-family: "Noto Sans Bengali"; font-weight: 500; }
.lc-zc-font-noto-sans-bengali-semibold { font-family: "Noto Sans Bengali"; font-weight: 600;}
.lc-zc-font-noto-sans-bengali-bold { font-family: "Noto Sans Bengali"; font-weight: 700;}

.lc-zc-font-medium { font-weight: 500; }
.lc-zc-font-semibold { font-weight: 600; }
.lc-zc-font-bold { font-weight: 700; }

.lc-zc-text-muted { color: #6b7280; }
.lc-zc-text-primary { color: #1d4ed8; }
.lc-zc-text-black { color: var(--default); }
.lc-zc-text-white { color: #ffffff }



/* ------------------------------
   Background
------------------------------ */

.lc-zc-bg-primary-100 { background-color: rgba(29, 78, 216, 0.1); }
.lc-zc-bg-primary { background-color: var(--primary); }


/* ------------------------------
   Containers & Cards
------------------------------ */

.entry-content.has-global-padding {
    padding: 0 8px !important;
}
/* ------------------------------
   Containers & Cards
------------------------------ */

.lc-zc-app {
    max-width: 1280px;
    margin: 0 auto;
    font-family: "Noto Sans Bengali";
    color: #717182;
    font-weight: normal;
    font-size: 16px;
}

.lc-zc-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}

.lc-zc-card-soft {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.09);
}
.lc-zc-card-soft footer {
    background-color: rgba(29, 78, 216, 0.05);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.09);
}


/* ------------------------------
  Border Radius
------------------------------ */
.lc-zc-rounded-sm {
    border-radius: 14px;
}

/* ------------------------------
   Others
------------------------------ */
.lc-zc-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.09);
}

/* ------------------------------
   Form Controls
------------------------------ */

.lc-zc-step-pane label {
    display: block;
    font-weight: 400;
    margin-bottom: 0.25rem;
    font-size: 14px;
}

.lc-zc-input {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    background-color: var(--input-background);
}

.lc-zc-input input {
    border: none;
    outline: none;
    flex: 1;
}

.lc-zc-input:focus-within {
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(var(--ring-rgb), 0.5);
}

.lc-zc-input span {
    margin-left: 0.5rem;
    color: #6b7280;
    font-size: 14px;
}


/* ------------------------------
   Shadows
------------------------------ */
.lc-zc-shadow-lg {
    box-shadow: 0 2px 4px -2px #0000001A;
}

.lc-zc-shadow {
    box-shadow: 0 4px 6px -1px #0000001A;
}



/* ------------------------------
   Buttons
------------------------------ */

.lc-zc-btn-primary {
    background: #1d4ed8;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    border: none;
}

.lc-zc-btn-primary:hover {
    background: #1e40af;
}

/* ------------------------------
   Steps
------------------------------ */
.lc-zc-step-pane {
    display: none;
}
.lc-zc-step-pane.active {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

/* ------------------------------
   Tabs
------------------------------ */

.lc-zc-tab-nav {
    display: flex;
    margin-bottom: 1rem;
    justify-items: center;
    align-items: center;
    background-color: #ECECF0;
    width: 100%;
    padding: 3px;
    border-radius: 1rem;
    font-weight: 500;
}

.lc-zc-tab-btn {
    background: transparent;
    border: none;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #0A0A0A;
    transition: all 0.2s ease;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.lc-zc-tab-btn:focus {
    outline: none;
}

.lc-zc-tab-btn.active {
    background: #ffffff;
}

.lc-zc-tab-content {
    min-height: 300px;
}

.lc-zc-tab-content p {
    font-size: 12px;
}

.lc-zc-card-soft-title {
    color: #1d4ed8;
}

.lc-zc-tab-pane {
    display: none;
}

.lc-zc-tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ------------------------------
   Responsive
------------------------------ */

@media (max-width: 768px) {
    .lc-zc-p-6 { padding: 12px; }

    .lc-zc-grid-2 {
        grid-template-columns: 1fr;
    }
    .lc-zc-grid-3 {
        grid-template-columns: 1fr;
    }

    .lc-zc-summary {
        order: -1;
    }
    .lc-zc-sm-hidden {
        display: none;
    }
    .lc-zc-tab-btn {
        padding: 8px;
    }
}


/* ------------------------------
  Custom css
------------------------------- */
.lc-zc-left-card {

}
.lc-zc-main-left-container {
    background-color: #ffffff;
}

.lc-zc-total-btn {
    opacity: 1;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #1553A133;
    background: #1553A10D;
    display: none;
    font-family: "Noto Sans Bengali";
    font-weight: 500;
    font-size: 16px;
    margin: 16px 0;
}
.lc-zc-total-btn span span {
    font-size: 24px;
    font-weight: bold;
}
.lc-zc-total-btn.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lc-zc-total-btn.liability {
    border-color: #D4183D33;
    background-color: #D4183D0D;
}

.lc-zc-total-btn.liability .lc-zc-text-primary{
    color: #D4183D;
}

.lc-zc-action-btn {
    opacity: 1;
    border-radius: 8px;
    display: none;
    justify-content: center;
    gap: 16px;
    align-items: center;
    font-family: "Noto Sans Bengali";
    font-weight: 500;
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid;
    outline: none;
}

.lc-zc-action-btn.active {
    display: flex;
}

.lc-zc-previous-btn, .lc-zc-recalculate-btn {
    color: var(--default);
    background-color: #ffffff;
    border-color: #0000001A;
}

.lc-zc-previous-btn:hover, .lc-zc-recalculate-btn:hover {
    background-color: #ECECF0
}

.lc-zc-next-btn {
    color: #ffffff;
    background-color: var(--primary);
    border-color: transparent;
}

.lc-zc-next-btn:hover {
    background-color: rgba(21, 83, 161, 0.81);
}

.lc-zc-calculate-btn {
    color: #ffffff;
    background-color: var(--secondary);
    border-color: transparent;
}

.lc-zc-calculate-btn:hover {
    background-color: rgba(37, 178, 79, 0.88);
}

.lc-zc-zakat-not-applicable-title, .lc-zc-zakat-applicable-title {
    background-color: #ECECF0;
    border: 1px solid #0000001A;
    border-radius: 14px;
    color: #717182;
    padding: 24px;
    display: none;
}

.lc-zc-zakat-not-applicable-title.active, .lc-zc-zakat-applicable-title.active {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

.lc-zc-zakat-not-applicable-title {
    background-color: #ECECF0;
    border: 1px solid #0000001A;
    color: #717182;
}

.lc-zc-zakat-applicable-title {
    color: var(--secondary);
    border: 1px solid #25B24F4D;
    background-color: #25B24F0D;
}

.lc-zc-net-zakat-result {
    display: none;
    margin: 16px 0;
}

.lc-zc-net-zakat-result.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lc-zc-summary-card {
    border: 1px solid;
    border-radius: 14px;
    padding: 24px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.lc-zc-summary-card strong {
    color: var(--primary);
    font-weight: bold;
    font-size: 24px;
}

.lc-zc-total-payable-zakat {
    background: linear-gradient(135deg, rgba(37, 178, 79, 0.1) 0%, rgba(37, 178, 79, 0.05) 100%);
    border-color: var(--secondary);
    box-shadow: 0 10px 15px -3px #0000001A;
    text-align: center;
}
.lc-zc-payable-zakat-icon-box {
    border-radius: 100%;
    background-color: #25B24F33;
    color: var(--secondary);
    width: 64px;
    height: 64px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lc-zc-net-zakat-amount {
    color: var(--secondary);
    font-size: 48px;
    line-height: 48px;
    margin: 8px auto;
    font-weight: bold;
}

.lc-zc-net-zakat-result .lc-zc-summary-card {
    border-color: #25B24F33;
}

.lc-zc-net-zakat-result .lc-zc-summary-card strong{
    color: var(--secondary);
}

.lc-zc-total-assets, .lc-zc-total-zakatable-asset {
    border-color: #1553A133;
}

.lc-zc-total-assets strong, .lc-zc-total-zakatable-asset strong{
    color: #1553A1;
}

.lc-zc-total-liabilities {
    border-color: #D4183D33
}

.lc-zc-total-liabilities strong {
    color: #D4183D;
}

.lc-zc-zakat-result {
    display: none;
}

.lc-zc-zakat-result.active {
    display: block;
}

.lc-zc-net-zakat-title {
    font-size: 18px;
    font-weight: 600;
}
/* ------------------------------
   Donation Modal
------------------------------ */

.lc-zc-donation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 8px;
    font-family: "Noto Sans Bengali";
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    border: none;
    outline: none;
    color: #ffffff;
    background-color: var(--secondary);
    transition: background-color 0.2s ease;
}

.lc-zc-donation-btn:hover {
    background-color: rgba(37, 178, 79, 0.88);
}

.lc-zc-donation-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lc-zc-donation-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.lc-zc-donation-modal.is-open .lc-zc-donation-modal-content {
    transform: scale(1);
}

.lc-zc-donation-modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.lc-zc-donation-modal-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 24px;
    transform: scale(0.95);
    transition: transform 0.2s ease;
}

.lc-zc-donation-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #717182;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.lc-zc-donation-modal-close:hover {
    background-color: #ECECF0;
    color: #0A0A0A;
}

.lc-zc-donation-modal-header {
    margin-bottom: 16px;
    padding-right: 40px;
}

.lc-zc-donation-modal-title {
    font-family: "Noto Sans Bengali";
    font-weight: 600;
    font-size: 1.25rem;
    color: #0A0A0A;
    margin: 0 0 8px 0;
}

.lc-zc-donation-modal-instruction {
    font-family: "Noto Sans Bengali";
    font-size: 0.875rem;
    color: #717182;
    margin: 0;
    line-height: 1.5;
}

.lc-zc-donation-modal-zakat-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(37, 178, 79, 0.1) 0%, rgba(37, 178, 79, 0.05) 100%);
    border: 1px solid rgba(37, 178, 79, 0.3);
    border-radius: 14px;
}

.lc-zc-donation-modal-zakat-label {
    font-family: "Noto Sans Bengali";
    font-size: 0.875rem;
    color: #717182;
}

.lc-zc-donation-modal-zakat-value {
    font-family: "Noto Sans Bengali";
    font-weight: 700;
    font-size: 2rem;
    color: var(--secondary);
    line-height: 1.2;
}

.lc-zc-donation-modal-zakat-currency {
    font-family: "Noto Sans Bengali";
    font-size: 0.875rem;
    color: #717182;
}

.lc-zc-donation-modal-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lc-zc-donation-modal-section-title {
    font-family: "Noto Sans Bengali";
    font-weight: 600;
    font-size: 1rem;
    color: #0A0A0A;
    margin: 0 0 12px 0;
}

.lc-zc-donation-account-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lc-zc-donation-account-item {
    display: flex;
    /*align-items: center;*/
    gap: 16px;
    padding: 16px;
    background: #ffffff;
}

.lc-zc-donation-account-item.lc-zc-donation-bank-item {
    align-items: flex-start;
    background-color: #EFF6FF;
    border: 1px solid #BEDBFF;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 12px;
}

.lc-zc-donation-account-logo {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: "Noto Sans Bengali";
    font-weight: 700;
    font-size: 0.75rem;
    color: #ffffff;
}

.lc-zc-logo-bkash {
    /*background: #E2136E;*/
}

.lc-zc-logo-nagad {
    /*background: #F26522;*/
}

.lc-zc-logo-islami-bank {
    /*background: #006B3F;*/
}

.lc-zc-logo-dbbl {
    background: linear-gradient(135deg, #003087 0%, #E65100 100%);
}

.lc-zc-donation-account-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lc-zc-donation-account-name {
    font-family: "Noto Sans Bengali";
    font-weight: 600;
    font-size: 1rem;
    color: #0A0A0A;
}

.lc-zc-donation-account-holder,
.lc-zc-donation-account-branch {
    font-family: "Noto Sans Bengali";
    font-size: 14px;
    color: #717182;
}

.lc-zc-donation-account-number-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.lc-zc-donation-account-number {
    font-family: "Noto Sans Bengali";
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--primary);
}

.lc-zc-donation-copy-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    color: #717182;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.lc-zc-donation-copy-btn:hover {
    background-color: rgba(37, 178, 79, 0.1);
    color: var(--secondary);
    border-color: rgba(37, 178, 79, 0.3);
}

.lc-zc-donation-copy-btn.copied {
    background-color: rgba(37, 178, 79, 0.15);
    color: var(--secondary);
    border-color: var(--secondary);
}

.lc-zc-copy-feedback {
    position: absolute;
    top: -25px;
    right: 0;
    background: var(--secondary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    animation: fadeInOut 2s ease-in-out forwards;
    z-index: 10;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(5px); }
    15% { opacity: 1; transform: translateY(0); }
    85% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-5px); }
}

.lc-zc-badge {
    background: #0000001A;
    border-radius: 100px;
    padding: 2px 10px;
    font-size: 14px;
    margin-left: 8px;
    align-items: center;
    justify-content: center;
}
.lc-zc-badge.merchant {
    background: #1553A133;
}

.lc-zc-donation-mfs-note {
    font-size: 14px;
    margin-top: 4px;
    color: blue;;
}

.main-step-title {
    font-weight: 600;
}

.lc-zc-footer {
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    padding: 16px 2px;
    color: #00000059;
    font-size: 14px;
    font-weight: 400;
}