/* /Authentication/Components/Login.razor.rz.scp.css */
.card[b-s2ak8zj6rw] {
    margin-bottom: 2rem;
}
/* /Authentication/Components/Register.razor.rz.scp.css */
.loading-overlay[b-lxqhqgvgd5] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

@@keyframes pulse {
     0%[b-lxqhqgvgd5] {
         transform: scale(1);
         box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
     }

     50%[b-lxqhqgvgd5] {
         transform: scale(0.95);
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
     }

     100%[b-lxqhqgvgd5] {
         transform: scale(1);
         box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
     }
 }
/* /Components/AI/ConversationalWizard.razor.rz.scp.css */
/* ================================================================
   ConversationalWizard — scoped styles
   Design: AI-native wizard matching AGUILayout design language
   ================================================================ */

/* Root container */
.conv-wizard[b-uj8t7tkof3] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    font-family: inherit;
}

/* ── Progress bar ─────────────────────────────────────────────── */
.conv-wizard__progress-track[b-uj8t7tkof3] {
    height: 4px;
    background: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.conv-wizard__progress-bar[b-uj8t7tkof3] {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 9999px;
    transition: width 0.5s cubic-bezier(.4,0,.2,1);
}

.conv-wizard__progress-label[b-uj8t7tkof3] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Two-column layout ────────────────────────────────────────── */
.conv-wizard__layout[b-uj8t7tkof3] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .conv-wizard__layout[b-uj8t7tkof3] {
        grid-template-columns: 1fr;
    }
}

/* ── Main conversation area ───────────────────────────────────── */
.conv-wizard__main[b-uj8t7tkof3] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
}

/* ── Message history ──────────────────────────────────────────── */
.conv-wizard__history[b-uj8t7tkof3] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb transparent;
}

.conv-wizard__msg[b-uj8t7tkof3] {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.conv-wizard__msg--ai[b-uj8t7tkof3] {
    flex-direction: row;
}

.conv-wizard__msg--user[b-uj8t7tkof3] {
    flex-direction: row-reverse;
}

.conv-wizard__msg-avatar[b-uj8t7tkof3] {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.conv-wizard__msg-bubble[b-uj8t7tkof3] {
    max-width: 80%;
    padding: 0.625rem 0.875rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border-radius: 1rem;
    word-break: break-word;
}

.conv-wizard__msg--ai .conv-wizard__msg-bubble[b-uj8t7tkof3] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #1f2937;
    border-bottom-left-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.conv-wizard__msg--user .conv-wizard__msg-bubble[b-uj8t7tkof3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-bottom-right-radius: 0.25rem;
}

/* ── Question card ────────────────────────────────────────────── */
.conv-wizard__question-card[b-uj8t7tkof3] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    animation: wizard-card-in-b-uj8t7tkof3 0.25s ease forwards;
}

@keyframes wizard-card-in-b-uj8t7tkof3 {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.conv-wizard__question-text[b-uj8t7tkof3] {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.5;
}

/* ── Option buttons ───────────────────────────────────────────── */
.conv-wizard__options[b-uj8t7tkof3] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.conv-wizard__option-btn[b-uj8t7tkof3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    cursor: pointer;
    text-align: left;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
    transition: all 0.15s ease;
    line-height: 1.4;
}

.conv-wizard__option-btn:hover:not(:disabled)[b-uj8t7tkof3] {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1d4ed8;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.12);
}

.conv-wizard__option-btn:active:not(:disabled)[b-uj8t7tkof3] {
    transform: translateX(2px) scale(0.99);
}

.conv-wizard__option-btn:disabled[b-uj8t7tkof3] {
    opacity: 0.5;
    cursor: not-allowed;
}

.conv-wizard__option-num[b-uj8t7tkof3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    flex-shrink: 0;
}

.conv-wizard__option-btn:hover:not(:disabled) .conv-wizard__option-num[b-uj8t7tkof3] {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.conv-wizard__option-label[b-uj8t7tkof3] {
    flex: 1;
}

/* ── Custom text input ────────────────────────────────────────── */
.conv-wizard__custom[b-uj8t7tkof3] {
    padding-top: 0.25rem;
}

.conv-wizard__custom-input[b-uj8t7tkof3] {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.625rem;
    background: white;
    color: #1f2937;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.conv-wizard__custom-input:focus[b-uj8t7tkof3] {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* ── Completion state ─────────────────────────────────────────── */
.conv-wizard__complete[b-uj8t7tkof3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
    border: 1px solid #bbf7d0;
    border-radius: 1rem;
    text-align: center;
    animation: wizard-card-in-b-uj8t7tkof3 0.3s ease forwards;
}

.conv-wizard__complete-icon[b-uj8t7tkof3] {
    font-size: 2.5rem;
    line-height: 1;
}

.conv-wizard__complete-title[b-uj8t7tkof3] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.conv-wizard__complete-subtitle[b-uj8t7tkof3] {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    max-width: 400px;
}

.conv-wizard__go-btn[b-uj8t7tkof3] {
    margin-top: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
}

.conv-wizard__go-btn:hover[b-uj8t7tkof3] {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35);
}

.conv-wizard__go-btn:active[b-uj8t7tkof3] {
    transform: scale(0.98);
}

/* ── Side panel slot ──────────────────────────────────────────── */
.conv-wizard__side[b-uj8t7tkof3] {
    position: sticky;
    top: 1rem;
}
/* /Components/AI/LiveRecommendationPanel.razor.rz.scp.css */
/* ================================================================
   LiveRecommendationPanel — scoped styles
   ================================================================ */

.live-rec-panel[b-eu8f4mtg44] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.06);
    transition: opacity 0.3s ease;
}

/* ── Header ───────────────────────────────────────────────────── */
.live-rec-panel__header[b-eu8f4mtg44] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    background: linear-gradient(135deg, #fafafa 0%, #f5f3ff 100%);
}

.live-rec-panel__title[b-eu8f4mtg44] {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4b5563;
}

.live-rec-panel__updating[b-eu8f4mtg44] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: #667eea;
    font-weight: 500;
}

.live-rec-dot[b-eu8f4mtg44] {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    animation: rec-dot-blink-b-eu8f4mtg44 1s ease-in-out infinite;
}

@keyframes rec-dot-blink-b-eu8f4mtg44 {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
}

/* ── Models list ──────────────────────────────────────────────── */
.live-rec-panel__models[b-eu8f4mtg44] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Individual model row ─────────────────────────────────────── */
.live-rec-model[b-eu8f4mtg44] {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s ease;
}

.live-rec-model:last-child[b-eu8f4mtg44] {
    border-bottom: none;
}

.live-rec-model--top[b-eu8f4mtg44] {
    background: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 100%);
}

.live-rec-model__header[b-eu8f4mtg44] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.live-rec-model__icon[b-eu8f4mtg44] {
    font-size: 1.125rem;
    line-height: 1;
}

.live-rec-model__name[b-eu8f4mtg44] {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.live-rec-model__badge[b-eu8f4mtg44] {
    display: inline-flex;
    align-items: center;
    padding: 1px 7px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 9999px;
}

/* ── Score bar ────────────────────────────────────────────────── */
.live-rec-model__bar-wrap[b-eu8f4mtg44] {
    height: 5px;
    background: #f3f4f6;
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.live-rec-model__bar[b-eu8f4mtg44] {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.6s cubic-bezier(.4,0,.2,1);
    min-width: 2px;
}

.live-rec-model__score[b-eu8f4mtg44] {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    text-align: right;
    margin-bottom: 0.25rem;
}

.live-rec-model--top .live-rec-model__score[b-eu8f4mtg44] {
    color: #667eea;
}

.live-rec-model__reason[b-eu8f4mtg44] {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0 0 0.5rem;
    line-height: 1.4;
    min-height: 1.4em;
}

/* ── Select button ────────────────────────────────────────────── */
.live-rec-model__select-btn[b-eu8f4mtg44] {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 1px 4px rgba(102, 126, 234, 0.2);
}

.live-rec-model__select-btn:hover[b-eu8f4mtg44] {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.live-rec-model__select-btn:active[b-eu8f4mtg44] {
    transform: scale(0.98);
}

/* ── Placeholder ──────────────────────────────────────────────── */
.live-rec-panel__placeholder[b-eu8f4mtg44] {
    padding: 1.25rem 1rem;
    font-size: 0.8125rem;
    color: #9ca3af;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}
/* /Components/Assets/EAssetCard.razor.rz.scp.css */
.easset-card[b-0xjw0ndbi9] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.easset-card:hover[b-0xjw0ndbi9] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.easset-card-image[b-0xjw0ndbi9] {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.easset-card-image img[b-0xjw0ndbi9] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.easset-card:hover .easset-card-image img[b-0xjw0ndbi9] {
    transform: scale(1.05);
}

.rented-badge[b-0xjw0ndbi9] {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.easset-card-content[b-0xjw0ndbi9] {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.easset-name[b-0xjw0ndbi9] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.easset-location[b-0xjw0ndbi9] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.875rem;
}

.easset-location svg[b-0xjw0ndbi9] {
    flex-shrink: 0;
}

.funding-progress[b-0xjw0ndbi9] {
    margin: 8px 0;
}

.progress-header[b-0xjw0ndbi9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.funded-amount[b-0xjw0ndbi9] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.funded-percentage[b-0xjw0ndbi9] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
}

.progress-bar[b-0xjw0ndbi9] {
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill[b-0xjw0ndbi9] {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.easset-features[b-0xjw0ndbi9] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.feature[b-0xjw0ndbi9] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.875rem;
}

.feature svg[b-0xjw0ndbi9] {
    color: #9ca3af;
    flex-shrink: 0;
}

.easset-footer[b-0xjw0ndbi9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.investors-count[b-0xjw0ndbi9] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.875rem;
}

.investors-count svg[b-0xjw0ndbi9] {
    color: #9ca3af;
}

.category-badge[b-0xjw0ndbi9] {
    padding: 4px 12px;
    background-color: #f3f4f6;
    color: #4b5563;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}
/* /Components/Assets/EAssetDetail.razor.rz.scp.css */
.easset-detail-container[b-d3h83gkuyy] {
    display: flex;
    gap: 24px;
    padding: 20px;
    background-color: #f8f9fa;
    max-width: 1400px;
    margin: auto;
    min-height: 100vh;
}

.main-content[b-d3h83gkuyy] {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar[b-d3h83gkuyy] {
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 80px;
    align-self: flex-start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

/* Header */
.header-actions[b-d3h83gkuyy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.back-button[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.back-button:hover[b-d3h83gkuyy] {
    background-color: #e9ecef;
}

.actions[b-d3h83gkuyy] {
    display: flex;
    gap: 10px;
}

.btn-outline[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-outline:hover[b-d3h83gkuyy] {
    border-color: #adb5bd;
    background-color: #f8f9fa;
}

/* Image Gallery */
.image-gallery[b-d3h83gkuyy] {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.image-gallery .main-image[b-d3h83gkuyy] {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
    display: block;
}

.image-gallery .main-image:hover[b-d3h83gkuyy] {
    transform: scale(1.01);
}

.image-gallery .thumbnail-container[b-d3h83gkuyy] {
    display: flex;
    gap: 12px;
    margin-top: 0;
    padding: 12px 16px;
    overflow-x: auto;
}

.image-gallery .thumbnail-image[b-d3h83gkuyy] {
    width: 100px;
    height: 75px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.image-gallery .thumbnail-image:hover[b-d3h83gkuyy] {
    border-color: #3b82f6;
}

/* Asset Info */
.asset-info[b-d3h83gkuyy] {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.asset-info h1[b-d3h83gkuyy] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.asset-info .tags[b-d3h83gkuyy] {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.asset-info .tag[b-d3h83gkuyy] {
    background-color: #e9ecef;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.asset-info .tag.rented[b-d3h83gkuyy] {
    background-color: #d1e7dd;
    color: #0f5132;
}

.asset-info .developer[b-d3h83gkuyy] {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 16px;
    font-size: 1rem;
}

.asset-info .description[b-d3h83gkuyy] {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Characteristics */
.characteristics[b-d3h83gkuyy] {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.char-item[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 150px;
}

.char-item.sqm[b-d3h83gkuyy],
.char-item.address[b-d3h83gkuyy] {
    flex: 2;
}

.char-item svg[b-d3h83gkuyy] {
    color: #6c757d;
    flex-shrink: 0;
}

.char-item span[b-d3h83gkuyy] {
    font-weight: 500;
    color: #495057;
}

/* AI analysis block on standalone asset detail page */
.asset-ai-analysis-block[b-d3h83gkuyy] {
    margin-top: 16px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
    background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.asset-ai-analysis-header[b-d3h83gkuyy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.asset-ai-analysis-header h3[b-d3h83gkuyy] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.asset-ai-analysis-scores[b-d3h83gkuyy] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.ai-score-item[b-d3h83gkuyy] {
    padding: 10px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.score-label[b-d3h83gkuyy] {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 4px;
}

.score-value[b-d3h83gkuyy] {
    font-size: 1rem;
    color: #0f172a;
}

.score-value.risk-low[b-d3h83gkuyy] {
    color: #15803d;
}

.score-value.risk-medium[b-d3h83gkuyy] {
    color: #a16207;
}

.score-value.risk-high[b-d3h83gkuyy] {
    color: #b91c1c;
}

.asset-ai-analysis-reasons h4[b-d3h83gkuyy] {
    margin: 0 0 6px;
    font-size: 0.9rem;
    color: #334155;
}

.asset-ai-analysis-reasons ul[b-d3h83gkuyy] {
    margin: 0;
    padding-left: 18px;
    color: #334155;
}

.asset-ai-analysis-context[b-d3h83gkuyy] {
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

/* Funding Timeline */
.funding-timeline[b-d3h83gkuyy] {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.funding-timeline h2[b-d3h83gkuyy] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.timeline[b-d3h83gkuyy] {
    position: relative;
    padding-left: 30px;
}

.timeline[b-d3h83gkuyy]::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background-color: #dee2e6;
}

.timeline-item[b-d3h83gkuyy] {
    position: relative;
    margin-bottom: 24px;
}

.timeline-marker[b-d3h83gkuyy] {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 16px;
    height: 16px;
    background-color: #3b82f6;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #3b82f6;
}

.timeline-item.guaranteed .timeline-marker[b-d3h83gkuyy] {
    background-color: #198754;
    box-shadow: 0 0 0 2px #198754;
}

.timeline-content h4[b-d3h83gkuyy] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.timeline-date[b-d3h83gkuyy] {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.timeline-description[b-d3h83gkuyy] {
    color: #495057;
    line-height: 1.5;
}

.guaranteed-badge[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #198754;
    font-size: 0.875rem;
    margin-top: 8px;
}

/* Projected ROI */
.projected-roi[b-d3h83gkuyy] {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.projected-roi h2[b-d3h83gkuyy] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.4;
}

.projected-roi h2 strong[b-d3h83gkuyy] {
    color: #198754;
}

/* Chart Styles */
.chart[b-d3h83gkuyy] {
    padding: 20px 0;
}

.bar-container[b-d3h83gkuyy] {
    display: flex;
    justify-content: space-around;
    height: 250px;
    border-left: 2px solid #dee2e6;
    border-bottom: 2px solid #dee2e6;
    align-items: flex-end;
    padding: 0 10px;
}

.bar-wrapper[b-d3h83gkuyy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    height: 100%;
    justify-content: flex-end;
}

.bar[b-d3h83gkuyy] {
    width: 60%;
    max-width: 80px;
    display: flex;
    flex-direction: column-reverse;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}

.segment[b-d3h83gkuyy] {
    width: 100%;
}

.segment.investment[b-d3h83gkuyy] {
    background-color: #3b82f6;
}

.segment.rental[b-d3h83gkuyy] {
    background-color: #fbbf24;
}

.segment.appreciation[b-d3h83gkuyy] {
    background-color: #10b981;
}

.year-label[b-d3h83gkuyy] {
    margin-top: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
}

.chart-legend[b-d3h83gkuyy] {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legend-item[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.legend-color[b-d3h83gkuyy] {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.legend-color.investment[b-d3h83gkuyy] {
    background-color: #3b82f6;
}

.legend-color.rental[b-d3h83gkuyy] {
    background-color: #fbbf24;
}

.legend-color.appreciation[b-d3h83gkuyy] {
    background-color: #10b981;
}

/* Sidebar */
.sidebar[b-d3h83gkuyy] {
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 80px;
    align-self: flex-start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.property-price-card[b-d3h83gkuyy] {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
}

.property-price-card h3[b-d3h83gkuyy] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.property-price-card h2[b-d3h83gkuyy] {
    color: #3b82f6;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.progress-bar[b-d3h83gkuyy] {
    width: 100%;
    height: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill[b-d3h83gkuyy] {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    transition: width 0.3s ease;
}

.funding-status[b-d3h83gkuyy] {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6c757d;
}

.investors[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    margin-bottom: 16px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #495057;
}

.return-metrics[b-d3h83gkuyy] {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.return-metrics .metric[b-d3h83gkuyy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.return-metrics .metric span[b-d3h83gkuyy] {
    font-size: 0.875rem;
    color: #6c757d;
}

.return-metrics .metric strong[b-d3h83gkuyy] {
    font-size: 1rem;
    color: #198754;
}

.investment-input[b-d3h83gkuyy] {
    padding: 20px 24px;
    margin-bottom: 16px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.investment-input label[b-d3h83gkuyy] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.investment-input input[b-d3h83gkuyy] {
    width: 100%;
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
}

.investment-input input:focus[b-d3h83gkuyy] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-primary[b-d3h83gkuyy] {
    background-color: #3b82f6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover[b-d3h83gkuyy] {
    background-color: #2563eb;
}

.btn-full[b-d3h83gkuyy] {
    width: 100%;
    margin-top: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .easset-detail-container[b-d3h83gkuyy] {
        flex-direction: column;
    }

    .sidebar[b-d3h83gkuyy] {
        order: -1;
    }

    .characteristics[b-d3h83gkuyy] {
        flex-direction: column;
    }

    .bar-container[b-d3h83gkuyy] {
        height: 200px;
    }
}

/* Asset Categories Styling */
.asset-categories[b-d3h83gkuyy] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px 0;
}

.asset-categories .category-tag[b-d3h83gkuyy] {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: #ede9fe;
    color: #7c3aed;
    border-radius: 16px;
}

.asset-info .availability-date[b-d3h83gkuyy] {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0 0 10px 0;
}

/* Tokenized Investment Section */
.tokenized-investment-section[b-d3h83gkuyy] {
    background: linear-gradient(135deg, #E5E4E2 0%, #E5E4E2 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.tokenized-investment-section .section-header[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.tokenized-investment-section .section-header svg[b-d3h83gkuyy] {
    flex-shrink: 0;
}

.tokenized-investment-section .section-header h3[b-d3h83gkuyy] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.tokenized-investment-section .section-description[b-d3h83gkuyy] {
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.token-info-grid[b-d3h83gkuyy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.token-info-item[b-d3h83gkuyy] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.token-info-item:hover[b-d3h83gkuyy] {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.token-info-item label[b-d3h83gkuyy] {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.token-info-item .value[b-d3h83gkuyy] {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.token-info-item .value.available[b-d3h83gkuyy] {
    color: #10b981;
}

.token-info-item .value.price[b-d3h83gkuyy] {
    color: #fbbf24;
}

.token-info-item small[b-d3h83gkuyy] {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.token-availability[b-d3h83gkuyy] {
    margin-bottom: 1.5rem;
}

.availability-bar[b-d3h83gkuyy] {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.availability-fill[b-d3h83gkuyy] {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
    transition: width 0.5s ease;
    border-radius: 6px;
}

.availability-labels[b-d3h83gkuyy] {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    opacity: 0.9;
}

.btn-invest-tokens[b-d3h83gkuyy] {
    width: 100%;
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.2s;
    margin-bottom: 1rem;
}

.btn-invest-tokens:hover:not(:disabled)[b-d3h83gkuyy] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-invest-tokens:disabled[b-d3h83gkuyy] {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.5);
}

.token-benefits[b-d3h83gkuyy] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    opacity: 0.95;
}

.benefit-item svg[b-d3h83gkuyy] {
    flex-shrink: 0;
    color: #10b981;
}

.flow-note[b-d3h83gkuyy] {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #6c757d;
    font-size: 0.875rem;
    font-style: italic;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Mobile Responsiveness for Token Section */
@media (max-width: 768px) {
    .tokenized-investment-section[b-d3h83gkuyy] {
        padding: 1.5rem;
    }

    .token-info-grid[b-d3h83gkuyy] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .token-info-item[b-d3h83gkuyy] {
        padding: 1rem;
    }

    .token-info-item .value[b-d3h83gkuyy] {
        font-size: 1.5rem;
    }

    .tokenized-investment-section .section-header h3[b-d3h83gkuyy] {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .token-info-grid[b-d3h83gkuyy] {
        grid-template-columns: 1fr;
    }
}

/* ── Bookmark active state ──────────────────────────────── */
.btn-bookmarked[b-d3h83gkuyy] {
    color: #f59e0b;
    border-color: #fde68a;
    background: #fffbeb;
}

.btn-bookmarked:hover[b-d3h83gkuyy] {
    background-color: #fef3c7;
    border-color: #fcd34d;
}

/* ── Units summary in detail (for HasUnits assets) ─────── */
.detail-units-summary[b-d3h83gkuyy] {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 16px 20px;
    background: #f5f3ff;
    border-radius: 10px;
    border: 1px solid #ede9fe;
    margin-top: 4px;
}

.detail-units-types[b-d3h83gkuyy],
.detail-units-startprice[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4b5563;
}

.detail-units-types svg[b-d3h83gkuyy],
.detail-units-startprice svg[b-d3h83gkuyy] {
    flex-shrink: 0;
    color: #7c3aed;
}

.detail-units-startprice span[b-d3h83gkuyy] {
    font-weight: 700;
    color: #1e293b;
}

/* ── Inline map section ─────────────────────────────────── */
.detail-map-section[b-d3h83gkuyy] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.detail-map-header[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.detail-map-header h3[b-d3h83gkuyy] {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.detail-map-header svg[b-d3h83gkuyy] {
    color: #6b7280;
    flex-shrink: 0;
}

.detail-map-gmaps-link[b-d3h83gkuyy] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}

.detail-map-gmaps-link:hover[b-d3h83gkuyy] {
    background: #dbeafe;
}

.detail-map-container[b-d3h83gkuyy] {
    height: 300px;
    position: relative;
}

.detail-map-container .property-map-container[b-d3h83gkuyy] {
    height: 100%;
}

/* ── Georisques section ─────────────────────────────────── */
.georisques-section[b-d3h83gkuyy] {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.georisques-section h2[b-d3h83gkuyy] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.georisques-section p[b-d3h83gkuyy] {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.georisques-section a[b-d3h83gkuyy] {
    color: #374151;
    text-decoration: none;
}

/* ── Developer section ──────────────────────────────────── */
.developer-section[b-d3h83gkuyy] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 24px;
}

.developer-section-header[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.developer-section-header h3[b-d3h83gkuyy] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.developer-section-header svg[b-d3h83gkuyy] {
    color: #6b7280;
    flex-shrink: 0;
}

.developer-section-body[b-d3h83gkuyy] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.developer-name[b-d3h83gkuyy] {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.developer-address[b-d3h83gkuyy] {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.developer-description[b-d3h83gkuyy] {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
    margin: 4px 0 8px;
}

.btn-contact-developer[b-d3h83gkuyy] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #1f2937;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.15s;
}

.btn-contact-developer:hover[b-d3h83gkuyy] {
    background: #374151;
}

/* ── Share dialog ───────────────────────────────────────── */
.share-dialog-overlay[b-d3h83gkuyy] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-dialog[b-d3h83gkuyy] {
    background: white;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    padding: 24px;
    width: min(420px, 90vw);
}

.share-dialog-header[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.share-dialog-header h3[b-d3h83gkuyy] {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.share-dialog-close[b-d3h83gkuyy] {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6b7280;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.share-dialog-close:hover[b-d3h83gkuyy] {
    background: #f3f4f6;
    color: #111827;
}

.share-dialog-body[b-d3h83gkuyy] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-dialog-url[b-d3h83gkuyy] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.825rem;
    color: #374151;
    background: #f9fafb;
    box-sizing: border-box;
}

.share-copy-btn[b-d3h83gkuyy] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #1f2937;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.share-copy-btn:hover[b-d3h83gkuyy] {
    background: #374151;
}

/* ── Sidebar directsale / clubdeal fill variants ────────── */
.directsale-fill[b-d3h83gkuyy] {
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
}

.clubdeal-fill[b-d3h83gkuyy] {
    background: linear-gradient(90deg, #7c3aed 0%, #8b5cf6 100%);
}

/* ── DirectSale: TechnicalSpecsSummary panel ────────────── */
.techspecs-panel[b-d3h83gkuyy] {
    margin: 1rem 0;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #1e40af;
    border-radius: 8px;
}

.techspecs-header[b-d3h83gkuyy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
}

.techspecs-header svg[b-d3h83gkuyy] {
    color: #1e40af;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.techspecs-header h4[b-d3h83gkuyy] {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    letter-spacing: -0.01em;
}

.techspecs-text[b-d3h83gkuyy] {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.65;
    margin: 0 0 0.5rem;
}

.techspecs-truncated[b-d3h83gkuyy] {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.techspecs-toggle[b-d3h83gkuyy] {
    background: none;
    border: none;
    padding: 0;
    color: #1e40af;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-bottom: 0.75rem;
    display: block;
}

.techspecs-toggle:hover[b-d3h83gkuyy] {
    color: #1d4ed8;
}

.techspecs-doc-btn[b-d3h83gkuyy] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #1e40af;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.25rem;
    transition: background-color 0.2s;
}

.techspecs-doc-btn:hover[b-d3h83gkuyy] {
    background: #1d4ed8;
}
/* /Components/Assets/ProductCard.razor.rz.scp.css */
.product-card[b-i5l7oa1pqg] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover[b-i5l7oa1pqg] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-card-image[b-i5l7oa1pqg] {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-card-image img[b-i5l7oa1pqg] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img[b-i5l7oa1pqg] {
    transform: scale(1.05);
}

.badge[b-i5l7oa1pqg] {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.low-stock-badge[b-i5l7oa1pqg] {
    background-color: #f59e0b;
    color: white;
}

.out-of-stock-badge[b-i5l7oa1pqg] {
    background-color: #ef4444;
    color: white;
}

.product-card-content[b-i5l7oa1pqg] {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-name[b-i5l7oa1pqg] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.product-description[b-i5l7oa1pqg] {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.product-price[b-i5l7oa1pqg] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price[b-i5l7oa1pqg] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.variant-price[b-i5l7oa1pqg] {
    font-size: 1rem;
    color: #6b7280;
    text-decoration: line-through;
}

.product-variants[b-i5l7oa1pqg] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.variant-label[b-i5l7oa1pqg] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
}

.variant-options[b-i5l7oa1pqg] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.variant-tag[b-i5l7oa1pqg] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background-color: #f3f4f6;
    color: #4b5563;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.variant-more[b-i5l7oa1pqg] {
    padding: 4px 10px;
    background-color: #e5e7eb;
    color: #6b7280;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-footer[b-i5l7oa1pqg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.stock-info[b-i5l7oa1pqg] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.875rem;
}

.stock-info svg[b-i5l7oa1pqg] {
    color: #9ca3af;
}

.category-badge[b-i5l7oa1pqg] {
    padding: 4px 12px;
    background-color: #dbeafe;
    color: #1e40af;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}
/* /Components/Assets/ProductDetail.razor.rz.scp.css */
.product-detail-container[b-y76coym43d] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.main-content[b-y76coym43d] {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Header */
.header-actions[b-y76coym43d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.back-button[b-y76coym43d] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.back-button:hover[b-y76coym43d] {
    background-color: #f8f9fa;
}

.actions[b-y76coym43d] {
    display: flex;
    gap: 10px;
}

.btn-outline[b-y76coym43d] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-outline:hover[b-y76coym43d] {
    border-color: #adb5bd;
    background-color: #f8f9fa;
}

/* Product Images */
.product-images[b-y76coym43d] {
    margin-bottom: 32px;
}

.main-image[b-y76coym43d] {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.main-image img[b-y76coym43d] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-grid[b-y76coym43d] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.thumbnail[b-y76coym43d] {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.thumbnail:hover[b-y76coym43d] {
    border-color: #3b82f6;
}

/* Product Info */
.product-info h1[b-y76coym43d] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.category-badge[b-y76coym43d] {
    display: inline-block;
    padding: 6px 16px;
    background-color: #dbeafe;
    color: #1e40af;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.price-section[b-y76coym43d] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.price[b-y76coym43d] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.stock-warning[b-y76coym43d] {
    padding: 6px 12px;
    background-color: #fef3c7;
    color: #92400e;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.out-of-stock[b-y76coym43d] {
    padding: 6px 12px;
    background-color: #fee2e2;
    color: #991b1b;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.in-stock[b-y76coym43d] {
    padding: 6px 12px;
    background-color: #d1fae5;
    color: #065f46;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.description[b-y76coym43d] {
    color: #495057;
    line-height: 1.7;
    font-size: 1.0625rem;
    margin-bottom: 32px;
}

/* Variants Section */
.variants-section[b-y76coym43d] {
    margin-bottom: 32px;
}

.variants-section h3[b-y76coym43d] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.variants-grid[b-y76coym43d] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.variant-card[b-y76coym43d] {
    padding: 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.variant-card:hover[b-y76coym43d] {
    border-color: #adb5bd;
    background-color: #f8f9fa;
}

.variant-card.selected[b-y76coym43d] {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

.variant-info[b-y76coym43d] {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.variant-color[b-y76coym43d] {
    padding: 4px 10px;
    background-color: #e9ecef;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.variant-size[b-y76coym43d] {
    padding: 4px 10px;
    background-color: #e9ecef;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.variant-price[b-y76coym43d] {
    display: block;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 4px;
}

.variant-stock[b-y76coym43d] {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
}

/* Action Buttons */
.action-buttons[b-y76coym43d] {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-primary[b-y76coym43d],
.btn-secondary[b-y76coym43d] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary[b-y76coym43d] {
    background-color: #3b82f6;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-y76coym43d] {
    background-color: #2563eb;
}

.btn-primary:disabled[b-y76coym43d] {
    background-color: #cbd5e1;
    cursor: not-allowed;
}

.btn-secondary[b-y76coym43d] {
    background-color: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover[b-y76coym43d] {
    background-color: #eff6ff;
}

.btn-large[b-y76coym43d] {
    flex: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-content[b-y76coym43d] {
        padding: 20px;
    }

    .product-info h1[b-y76coym43d] {
        font-size: 1.5rem;
    }

    .price[b-y76coym43d] {
        font-size: 2rem;
    }

    .action-buttons[b-y76coym43d] {
        flex-direction: column;
    }

    .main-image[b-y76coym43d] {
        height: 300px;
    }
}
/* /Components/Header/HeaderBoxComponent.razor.rz.scp.css */
.cart-link[b-5vhrr00s3c] {
    color: black;
    text-decoration: none;
}

.cart-link i[b-5vhrr00s3c] {
    color: black
}

.cart-link:hover[b-5vhrr00s3c] {
    color: #f26745;
}

.cart-link:hover i[b-5vhrr00s3c] {
    color: #f26745;
}
/* /Components/Investment/CompleteInvestmentDialog.razor.rz.scp.css */
.modal-overlay[b-s663qjqxrn] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn-b-s663qjqxrn 0.2s ease;
}

@keyframes fadeIn-b-s663qjqxrn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.investment-dialog[b-s663qjqxrn] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp-b-s663qjqxrn 0.3s ease;
}

@keyframes slideUp-b-s663qjqxrn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dialog-header[b-s663qjqxrn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.dialog-header h3[b-s663qjqxrn] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.close-btn[b-s663qjqxrn] {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.375rem;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover[b-s663qjqxrn] {
    background: #f3f4f6;
    color: #111827;
}

.dialog-content[b-s663qjqxrn] {
    padding: 1.5rem 1.75rem;
}

.asset-summary[b-s663qjqxrn] {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.asset-summary h4[b-s663qjqxrn] {
    margin: 0 0 0.375rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.asset-summary .description[b-s663qjqxrn] {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.stats-grid[b-s663qjqxrn] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item[b-s663qjqxrn] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.stat-item label[b-s663qjqxrn] {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}

.stat-item .value[b-s663qjqxrn] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.stat-item .available-tokens[b-s663qjqxrn] {
    color: #10b981;
}

.token-selector[b-s663qjqxrn] {
    margin-bottom: 1.25rem;
}

.token-selector label[b-s663qjqxrn] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.625rem;
}

.input-group[b-s663qjqxrn] {
    display: flex;
    align-items: stretch;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.input-group:focus-within[b-s663qjqxrn] {
    border-color: #3b82f6;
}

.btn-decrement[b-s663qjqxrn],
.btn-increment[b-s663qjqxrn] {
    background: #f9fafb;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    color: #374151;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-decrement:hover:not(:disabled)[b-s663qjqxrn],
.btn-increment:hover:not(:disabled)[b-s663qjqxrn] {
    background: #f3f4f6;
    color: #111827;
}

.btn-decrement:disabled[b-s663qjqxrn],
.btn-increment:disabled[b-s663qjqxrn] {
    opacity: 0.4;
    cursor: not-allowed;
}

.token-input[b-s663qjqxrn] {
    flex: 1;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: #111827;
    background: white;
    outline: none;
}

.token-input[b-s663qjqxrn]::-webkit-inner-spin-button,
.token-input[b-s663qjqxrn]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.validation-error[b-s663qjqxrn] {
    display: block;
    color: #ef4444;
    font-size: 0.8125rem;
    margin-top: 0.375rem;
}

.total-amount[b-s663qjqxrn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    margin-bottom: 1.25rem;
    color: white;
}

.total-amount span[b-s663qjqxrn] {
    font-size: 0.9375rem;
    font-weight: 500;
}

.total-amount strong[b-s663qjqxrn] {
    font-size: 1.5rem;
    font-weight: 700;
}

.payment-provider[b-s663qjqxrn] {
    margin-bottom: 1.5rem;
}

.payment-provider label[b-s663qjqxrn] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.provider-options[b-s663qjqxrn] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
}

.provider-btn[b-s663qjqxrn] {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    text-align: center;
}

.provider-btn:hover[b-s663qjqxrn] {
    border-color: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.provider-btn.active[b-s663qjqxrn] {
    background: #eff6ff;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.provider-btn svg[b-s663qjqxrn] {
    color: #3b82f6;
}

.provider-btn span[b-s663qjqxrn] {
    font-weight: 600;
    color: #111827;
    font-size: 0.9375rem;
}

.provider-btn p[b-s663qjqxrn] {
    margin: 0;
    font-size: 0.8125rem;
    color: #6b7280;
}

.dialog-actions[b-s663qjqxrn] {
    display: flex;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
}

.btn-cancel[b-s663qjqxrn],
.btn-invest[b-s663qjqxrn] {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-cancel[b-s663qjqxrn] {
    background: white;
    border: 2px solid #e5e7eb;
    color: #374151;
}

.btn-cancel:hover:not(:disabled)[b-s663qjqxrn] {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-invest[b-s663qjqxrn] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-invest:hover:not(:disabled)[b-s663qjqxrn] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-invest:disabled[b-s663qjqxrn],
.btn-cancel:disabled[b-s663qjqxrn] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.spinner[b-s663qjqxrn] {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    animation: spin-b-s663qjqxrn 0.8s linear infinite;
}

@keyframes spin-b-s663qjqxrn {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.secure-notice[b-s663qjqxrn] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    color: #6b7280;
    font-size: 0.8125rem;
    margin: 0;
}

.secure-notice svg[b-s663qjqxrn] {
    color: #10b981;
}

/* Responsive */
@media (max-width: 640px) {
    .investment-dialog[b-s663qjqxrn] {
        width: 95%;
        max-height: 95vh;
    }

    .dialog-content[b-s663qjqxrn] {
        padding: 1.5rem;
    }

    .stats-grid[b-s663qjqxrn],
    .provider-options[b-s663qjqxrn] {
        grid-template-columns: 1fr;
    }

    .total-amount[b-s663qjqxrn] {
        padding: 1.25rem;
    }

    .total-amount strong[b-s663qjqxrn] {
        font-size: 1.5rem;
    }
}
/* /Components/Notifications/Toast.razor.rz.scp.css */
.custom-toast-container[b-kwj3ozrjqh] {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    /* Контейнерите за различните ъгли */
    .custom-toast-container.top-right[b-kwj3ozrjqh] {
        top: 1rem;
        right: 1rem;
        align-items: flex-end;
    }

    .custom-toast-container.top-left[b-kwj3ozrjqh] {
        top: 1rem;
        left: 1rem;
        align-items: flex-start;
    }

    .custom-toast-container.bottom-right[b-kwj3ozrjqh] {
        bottom: 1rem;
        right: 1rem;
        align-items: flex-end;
    }

    .custom-toast-container.bottom-left[b-kwj3ozrjqh] {
        bottom: 1rem;
        left: 1rem;
        align-items: flex-start;
    }

/* Общ вид на тоста */
.custom-toast[b-kwj3ozrjqh] {
    min-width: 300px;
    margin-bottom: 0.5rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.85);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    /* Преход при показване/скриване */
    .custom-toast.fade.show[b-kwj3ozrjqh] {
        opacity: 1;
        transform: translateY(0);
    }

    .custom-toast.fade[b-kwj3ozrjqh] {
        opacity: 0;
        transform: translateY(20px);
    }

/* Хедър на тоста */
.custom-toast-header[b-kwj3ozrjqh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0.75rem;
    color: #fff;
    background-color: inherit;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

    .custom-toast-header small[b-kwj3ozrjqh] {
        margin-left: auto;
        margin-right: 0.1rem;
    }

    .custom-toast-header button[b-kwj3ozrjqh] {
        margin-left: 0.1rem;
    }

/* Текстът */
.custom-toast-body[b-kwj3ozrjqh] {
    padding: 1rem;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

/* Бутона за затваряне */
.close[b-kwj3ozrjqh] {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
}

/* Цветове спрямо типа на тоста */
.custom-toast.Info[b-kwj3ozrjqh] {
    background-color: #17a2b8;
}

.custom-toast.Success[b-kwj3ozrjqh] {
    background-color: #28a745;
}

.custom-toast.Warning[b-kwj3ozrjqh] {
    background-color: #ea6813;
}

.custom-toast.Error[b-kwj3ozrjqh] {
    background-color: #a50000;
}
/* /Layout/CategoryComponent.razor.rz.scp.css */
/* Hide scrollbars for horizontal category row where supported */
.no-scrollbar[b-zzl8r90jcq]::-webkit-scrollbar { display: none; }
.no-scrollbar[b-zzl8r90jcq] { -ms-overflow-style: none; scrollbar-width: none; }
/* /Layout/Header.razor.rz.scp.css */
.logo-container[b-7ltdw2rog5] {
    position: absolute;
    top: 10px;
    left: 8%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-image[b-7ltdw2rog5] {
    height: 50px;
    max-width: 100%;
}

@@media (max-width: 1600px) and (min-width: 768px) {
     .logo-container[b-7ltdw2rog5] {
         top: 50px; /* Регулира височината на логото за устройства между 768px и 1600px */
         left: 50%;
         transform: translateX(-50%);
     }
 }

@@media (max-width: 768px) {
     .logo-container[b-7ltdw2rog5] {
         top: 5px; /* Регулира височината на логото за устройства под 768px */
         left: 50%;
         transform: translateX(-50%);
     }

     .logo-image[b-7ltdw2rog5] {
         height: 40px; /* Намалява размера на логото */
     }
 }
/* /Layout/MainLayout.razor.rz.scp.css */
.page-container[b-n8nufr82ea] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content[b-n8nufr82ea] {
    flex-grow: 1;
}
/* /Pages/Administration/AdminNavBar.razor.rz.scp.css */
/* AdminNavBar styles — layout handled via Tailwind utility classes in the .razor file */
/* /Pages/Assets/AssetDetail.razor.rz.scp.css */
.loading-container[b-s8idf6d3aw],
.error-container[b-s8idf6d3aw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px;
    text-align: center;
}

.spinner[b-s8idf6d3aw] {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f4f6;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-s8idf6d3aw 1s linear infinite;
}

@keyframes spin-b-s8idf6d3aw {
    to {
        transform: rotate(360deg);
    }
}

.loading-container p[b-s8idf6d3aw] {
    margin-top: 20px;
    font-size: 1.125rem;
    color: #6b7280;
}

.error-container h2[b-s8idf6d3aw] {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.error-container p[b-s8idf6d3aw] {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 24px;
}

.btn-primary[b-s8idf6d3aw] {
    background-color: #3b82f6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover[b-s8idf6d3aw] {
    background-color: #2563eb;
}
/* /Pages/Assets/Assets.razor.rz.scp.css */
.container[b-yyc40u76ec] {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-section[b-yyc40u76ec] {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
}

.hero-section h1[b-yyc40u76ec] {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-section p[b-yyc40u76ec] {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.filters-section[b-yyc40u76ec] {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.search-input[b-yyc40u76ec],
.category-select[b-yyc40u76ec],
.easset-status-select[b-yyc40u76ec] {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    transition: all 0.2s;
}

.search-input[b-yyc40u76ec] {
    flex: 1;
    min-width: 250px;
}

.search-input:focus[b-yyc40u76ec],
.category-select:focus[b-yyc40u76ec],
.easset-status-select:focus[b-yyc40u76ec] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.category-select[b-yyc40u76ec],
.easset-status-select[b-yyc40u76ec] {
    min-width: 200px;
}

.clear-filters-btn[b-yyc40u76ec] {
    padding: 10px 20px;
    background-color: #f97316;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.clear-filters-btn:hover[b-yyc40u76ec] {
    background-color: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.clear-filters-btn:active[b-yyc40u76ec] {
    transform: translateY(0);
}

.loading-container[b-yyc40u76ec],
.no-results[b-yyc40u76ec] {
    text-align: center;
    padding: 60px 20px;
}

.loading-container p[b-yyc40u76ec],
.no-results p[b-yyc40u76ec] {
    font-size: 1.125rem;
    color: #6b7280;
}

.assets-grid[b-yyc40u76ec] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.asset-card[b-yyc40u76ec] {
    cursor: pointer;
    transition: transform 0.2s;
}

.asset-card:hover[b-yyc40u76ec] {
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .hero-section h1[b-yyc40u76ec] {
        font-size: 2rem;
    }

    .filters-section[b-yyc40u76ec] {
        flex-direction: column;
    }

    .search-input[b-yyc40u76ec],
    .category-select[b-yyc40u76ec],
    .easset-status-select[b-yyc40u76ec] {
        width: 100%;
    }

    .clear-filters-btn[b-yyc40u76ec] {
        width: 100%;
    }

    .assets-grid[b-yyc40u76ec] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Assets/LatestAssets.razor.rz.scp.css */
.container[b-ctp1k51raj] {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-section[b-ctp1k51raj] {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
}

.hero-section h1[b-ctp1k51raj] {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-section p[b-ctp1k51raj] {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.filters-section[b-ctp1k51raj] {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.search-input[b-ctp1k51raj],
.category-select[b-ctp1k51raj],
.easset-status-select[b-ctp1k51raj] {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    transition: all 0.2s;
}

.search-input[b-ctp1k51raj] {
    flex: 1;
    min-width: 250px;
}

.search-input:focus[b-ctp1k51raj],
.category-select:focus[b-ctp1k51raj],
.easset-status-select:focus[b-ctp1k51raj] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.category-select[b-ctp1k51raj],
.easset-status-select[b-ctp1k51raj] {
    min-width: 200px;
}

.loading-container[b-ctp1k51raj],
.no-results[b-ctp1k51raj] {
    text-align: center;
    padding: 60px 20px;
}

.loading-container p[b-ctp1k51raj],
.no-results p[b-ctp1k51raj] {
    font-size: 1.125rem;
    color: #6b7280;
}

.assets-grid[b-ctp1k51raj] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.asset-card[b-ctp1k51raj] {
    cursor: pointer;
    transition: transform 0.2s;
}

.asset-card:hover[b-ctp1k51raj] {
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .hero-section h1[b-ctp1k51raj] {
        font-size: 2rem;
    }

    .filters-section[b-ctp1k51raj] {
        flex-direction: column;
    }

    .search-input[b-ctp1k51raj],
    .category-select[b-ctp1k51raj],
    .easset-status-select[b-ctp1k51raj] {
        width: 100%;
    }

    .assets-grid[b-ctp1k51raj] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Errors/NotAuthorized.razor.rz.scp.css */
.card[b-amjaoirgcb] {
    border-radius: 8px;
    border: none;
    margin-bottom: 40px;
}

.text-danger[b-amjaoirgcb] {
    font-size: 2rem;
    font-weight: bold;
}

.lead[b-amjaoirgcb] {
    font-size: 1.2rem;
    margin-top: 10px;
}

.btn[b-amjaoirgcb] {
    margin: 0 10px;
}
/* /Pages/Errors/NotFound.razor.rz.scp.css */
.not-found-container[b-0gpdm2rym5] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Центрира вертикално */
    background-color: transparent;
}

.not-found-content[b-0gpdm2rym5] {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9); /* Полупрозрачен фон */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Леки сенки */
}

.not-found-content h1[b-0gpdm2rym5] {
    font-size: 6rem;
    font-weight: bold;
    color: #dc3545; /* Червен текст */
    margin-bottom: 0.5rem;
}

.not-found-content h2[b-0gpdm2rym5] {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.not-found-content p[b-0gpdm2rym5] {
    font-size: 1rem;
    color: #6c757d;
}

.not-found-content .btn[b-0gpdm2rym5] {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}
/* /Pages/Investment/DirectSaleDashboard.razor.rz.scp.css */
/* /Pages/Investment/InvestmentModelDashboard.razor.rz.scp.css */
/* ================================================================
   InvestmentModelDashboard page wrapper
   ================================================================ */

.model-router-page[b-jpx0ivs2p8] {
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
}

/* ── Loading state ────────────────────────────────────────────── */
.model-router-page__loading[b-jpx0ivs2p8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.loading-spinner[b-jpx0ivs2p8] {
    width: 2rem;
    height: 2rem;
    border: 3px solid #e5e7eb;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-jpx0ivs2p8 0.75s linear infinite;
}

@keyframes spin-b-jpx0ivs2p8 {
    to { transform: rotate(360deg); }
}

/* ── Redirect state ───────────────────────────────────────────── */
.model-router-page__redirect[b-jpx0ivs2p8] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* ── Wizard header ────────────────────────────────────────────── */
.model-router-page__wizard-wrap[b-jpx0ivs2p8] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 1rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.model-router-page__wizard-header[b-jpx0ivs2p8] {
    padding-bottom: 0.25rem;
}

.model-router-page__wizard-header h1[b-jpx0ivs2p8] {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.375rem;
}

.model-router-page__wizard-header p[b-jpx0ivs2p8] {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}
/* /Pages/Payments/Cart.razor.rz.scp.css */
.quantity-input[b-rqxhabptb3] {
    width: 80px;
    text-align: center;
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
    border: 1px solid #6c757d;
    border-radius: 0.25rem;
}
/* /Pages/Payments/InvestmentPaymentSuccess.razor.rz.scp.css */
.success-container[b-w3tyettupu] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem;
    text-align: center;
}

.loader-box[b-w3tyettupu] {
    max-width: 400px;
}

.spinner-large[b-w3tyettupu] {
    border: 4px solid #f3f4f6;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin-b-w3tyettupu 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin-b-w3tyettupu {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-box h2[b-w3tyettupu] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.loader-box p[b-w3tyettupu] {
    color: #6b7280;
    font-size: 1rem;
    margin: 0 0 1rem 0;
}

.attempt-counter[b-w3tyettupu] {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Success Box */
.success-box[b-w3tyettupu] {
    max-width: 600px;
}

.checkmark-wrapper[b-w3tyettupu] {
    margin-bottom: 2rem;
}

.checkmark[b-w3tyettupu] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 0 auto;
    box-shadow: inset 0px 0px 0px #10b981;
    animation: fill-b-w3tyettupu 0.4s ease-in-out 0.4s forwards, scale-b-w3tyettupu 0.3s ease-in-out 0.9s both;
}

.checkmark__circle[b-w3tyettupu] {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #10b981;
    fill: none;
    animation: stroke-b-w3tyettupu 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check[b-w3tyettupu] {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke-b-w3tyettupu 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke-b-w3tyettupu {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale-b-w3tyettupu {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill-b-w3tyettupu {
    100% {
        box-shadow: inset 0px 0px 0px 50px #10b981;
    }
}

.success-box h1[b-w3tyettupu] {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 0.75rem 0;
}

.success-message[b-w3tyettupu] {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0 0 2rem 0;
}

.investment-details[b-w3tyettupu] {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item[b-w3tyettupu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.detail-item:not(:last-child)[b-w3tyettupu] {
    border-bottom: 1px solid #e5e7eb;
}

.detail-item .label[b-w3tyettupu] {
    font-size: 0.9375rem;
    color: #6b7280;
    font-weight: 500;
}

.detail-item .value[b-w3tyettupu] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.reservation-id[b-w3tyettupu] {
    font-family: monospace;
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 1rem;
}

.action-buttons[b-w3tyettupu] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary[b-w3tyettupu],
.btn-secondary[b-w3tyettupu] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary[b-w3tyettupu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover[b-w3tyettupu] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-w3tyettupu] {
    background: white;
    border: 2px solid #e5e7eb;
    color: #374151;
}

.btn-secondary:hover[b-w3tyettupu] {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #3b82f6;
}

/* Timeout Box */
.timeout-box[b-w3tyettupu] {
    max-width: 500px;
}

.warning-icon[b-w3tyettupu] {
    color: #f59e0b;
    margin-bottom: 1.5rem;
}

.timeout-box h2[b-w3tyettupu] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
}

.timeout-box p[b-w3tyettupu] {
    color: #6b7280;
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
}

.timeout-box .note[b-w3tyettupu] {
    background: #fffbeb;
    border: 1px solid #fef3c7;
    color: #92400e;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    margin: 1.5rem 0;
}

.reservation-ref[b-w3tyettupu] {
    font-family: monospace;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 640px) {
    .success-container[b-w3tyettupu] {
        padding: 1.5rem;
    }

    .success-box h1[b-w3tyettupu] {
        font-size: 1.75rem;
    }

    .checkmark[b-w3tyettupu] {
        width: 80px;
        height: 80px;
    }

    .action-buttons[b-w3tyettupu] {
        flex-direction: column;
    }

    .btn-primary[b-w3tyettupu],
    .btn-secondary[b-w3tyettupu] {
        width: 100%;
        justify-content: center;
    }

    .detail-item[b-w3tyettupu] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
/* /Pages/Products/LatestProducts.razor.rz.scp.css */
/* Smooth fade + slight slide animation when page changes */
.fade-slide[b-hkk4knguav] {
  animation: fadeSlideIn-b-hkk4knguav 450ms ease-in-out;
}

@keyframes fadeSlideIn-b-hkk4knguav {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* /Pages/Products/ProductDetails.razor.rz.scp.css */
.modal.fade[b-kjaa0sgmnk] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Височината на модала покрива целия екран */
}

.modal-dialog[b-kjaa0sgmnk] {
    position: relative;
    max-width: 800px;
    width: 100%; /* Запазва адаптивност */
    margin: 0; /* Без отмествания */
}

.modal-content[b-kjaa0sgmnk] {
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    overflow: hidden;
}

.modal.fade.show[b-kjaa0sgmnk] {
    display: flex; /* Flexbox за центриране */
}

.modal.fade .modal-dialog[b-kjaa0sgmnk] {
    transform: translate(0, -25%);
    transition: transform 0.3s ease-out;
}

.modal.fade.show .modal-dialog[b-kjaa0sgmnk] {
    transform: translate(0, 0);
}

.product-details-card[b-kjaa0sgmnk] {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-image img[b-kjaa0sgmnk] {
    max-width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.product-image img:hover[b-kjaa0sgmnk] {
    transform: scale(1.05);
}

.product-description[b-kjaa0sgmnk] {
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-meta .product-price[b-kjaa0sgmnk] {
    font-size: 1.5rem;
    color: #28a745;
}

.product-meta .product-quantity[b-kjaa0sgmnk] {
    font-size: 1rem;
    color: #17a2b8;
}

.product-actions button[b-kjaa0sgmnk] {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 8px;
}

.product-actions button .fa[b-kjaa0sgmnk] {
    margin-right: 5px;
}

.fixed-size-image[b-kjaa0sgmnk] {
    width: auto;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* /Pages/Public/About.razor.rz.scp.css */
.team-section h2[b-z9o41oweyl] {
    font-size: 28px;
    color: black;
    margin-bottom: 20px;
}

.team-members[b-z9o41oweyl] {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member[b-z9o41oweyl] {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
    width: 200px;
}

.team-member img[b-z9o41oweyl] {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.team-member h3[b-z9o41oweyl] {
    font-size: 18px;
    color: #30302e;
    margin-bottom: 5px;
}

.team-member p[b-z9o41oweyl] {
    font-size: 14px;
    color: #767676;
}
/* /Pages/Public/CustomerService.razor.rz.scp.css */
.service-section h3[b-yr4ev8cydq] {
    font-size: 24px;
    color: black;
    margin-bottom: 15px;
}

.service-contact[b-yr4ev8cydq] {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #30302e;
}

.service-contact li[b-yr4ev8cydq] {
    margin-bottom: 10px;
}

form .form-control[b-yr4ev8cydq] {
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button[b-yr4ev8cydq] {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
}
/* /Pages/Public/Deals/TodaysDeals.razor.rz.scp.css */
.todays-deals-section[b-rjc8msfi12] {
    background-color: #343a40;
    padding: 40px 20px;
    color: white;
}

.deal-card[b-rjc8msfi12] {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s;
}

.deal-card:hover[b-rjc8msfi12] {
    transform: translateY(-5px);
}

.deal-card-header[b-rjc8msfi12] {
    height: 180px;
    overflow: hidden;
}

.deal-card-image[b-rjc8msfi12] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-card-body[b-rjc8msfi12] {
    padding: 15px;
    text-align: center;
}

.deal-card-title[b-rjc8msfi12] {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.deal-card-price[b-rjc8msfi12] {
    font-size: 1.1rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 15px;
}

.deal-card-actions button[b-rjc8msfi12],
.deal-card-actions a[b-rjc8msfi12] {
    margin: 5px 0;
    font-size: 0.9rem;
}

.deal-card-actions[b-rjc8msfi12] {
    display: flex;
    justify-content: center;
    gap: 10px;
}
/* /Pages/Public/FAQ.razor.rz.scp.css */
.faq-section[b-3hko4scsw9] {
    margin-top: 20px;
    text-align: left;
}

.faq-item[b-3hko4scsw9] {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-question[b-3hko4scsw9] {
    font-size: 20px;
    color: #30302e;
    margin-bottom: 10px;
}

.faq-answer[b-3hko4scsw9] {
    font-size: 16px;
    color: #767676;
}
