/*
   RC premium theme motor
   Scope: visual layer only. Business logic, PDF logic and data handling stay untouched.
*/

:root {
    --rc-theme-ink: #0f172a;
    --rc-theme-cream: #fff7ed;
    --rc-theme-line: rgba(120, 53, 15, .20);
    --rc-theme-orange: #ea580c;
    --rc-theme-orange-deep: #7c2d12;
    --rc-theme-gold: #fbbf24;
    --rc-theme-blue: #2563eb;
    --rc-theme-blue-deep: #0b1b3a;
}

body.rc-premium-theme {
    min-height: 100vh;
    background:
        linear-gradient(118deg, #050505 0%, #190903 20%, #5b2107 36%, #9a3412 48%, #172554 68%, #0b1b3a 84%, #030712 100%) !important;
    background-size: 220% 220% !important;
    color: var(--rc-theme-ink);
    animation: rcPremiumBackground 15s ease-in-out infinite alternate;
}

body.rc-premium-theme::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(100deg, rgba(249, 115, 22, .22), rgba(255, 247, 237, .05), rgba(37, 99, 235, .26), rgba(234, 88, 12, .18));
    background-size: 260% 100%;
    opacity: .86;
    animation: rcPremiumColorWash 12s ease-in-out infinite alternate;
}

body.rc-premium-theme > * {
    position: relative;
    z-index: 1;
}

#rc_main_nav.rc-premium-nav {
    position: relative;
    isolation: isolate;
    gap: 6px;
    padding: 13px 12px 10px;
    border: 1px solid rgba(255, 247, 237, .14);
    border-radius: 16px !important;
    background:
        linear-gradient(115deg, #060607 0%, #1c0b04 25%, #4a1706 43%, #111827 61%, #0b1b3a 82%, #030712 100%) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 247, 237, .10) !important;
}

#rc_main_nav.rc-premium-nav::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    z-index: 0;
    background:
        linear-gradient(90deg, #421307, var(--rc-theme-orange), var(--rc-theme-gold), var(--rc-theme-blue), var(--rc-theme-blue-deep));
    background-size: 240% 100%;
    animation: rcPremiumAccent 11s ease-in-out infinite alternate;
}

#rc_main_nav.rc-premium-nav::after {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 0;
    left: -55%;
    width: 42%;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0), rgba(249, 115, 22, .15), rgba(255, 237, 213, .22), rgba(96, 165, 250, .18), rgba(255, 255, 255, 0));
    transform: skewX(-18deg);
    animation: rcPremiumNavWash 12s ease-in-out infinite;
}

#rc_main_nav.rc-premium-nav > .flex-grow {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-width: 12px;
}

#rc_main_nav.rc-premium-nav .id-nav-btn {
    position: relative;
    z-index: 1;
    min-height: 38px;
    padding: .72rem 1.05rem !important;
    border: 1px solid rgba(255, 247, 237, .08) !important;
    border-radius: 8px !important;
    background: rgba(255, 247, 237, .055) !important;
    color: rgba(255, 247, 237, .90) !important;
    line-height: 1.1;
    box-shadow: none !important;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

#rc_main_nav.rc-premium-nav .id-nav-btn:hover {
    border-color: rgba(255, 237, 213, .24) !important;
    background: rgba(255, 247, 237, .105) !important;
    color: #fff7ed !important;
    transform: translateY(-1px);
}

#rc_main_nav.rc-premium-nav .id-nav-btn.bg-blue-600,
#rc_main_nav.rc-premium-nav .id-nav-btn.rc-nav-active {
    border-color: rgba(255, 237, 213, .34) !important;
    background: linear-gradient(135deg, #fed7aa 0%, var(--rc-theme-orange) 46%, var(--rc-theme-orange-deep) 100%) !important;
    color: #fff7ed !important;
    box-shadow: 0 9px 18px rgba(124, 45, 18, .28), inset 0 1px 0 rgba(255, 255, 255, .24) !important;
}

#rc_app_shell.rc-premium-shell {
    border-color: rgba(255, 247, 237, .34) !important;
    background: rgba(255, 247, 237, .94) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .72) !important;
}

body.rc-premium-theme input,
body.rc-premium-theme textarea,
body.rc-premium-theme select {
    border-color: #d6bdab !important;
    border-radius: 8px !important;
}

body.rc-premium-theme input:focus,
body.rc-premium-theme textarea:focus,
body.rc-premium-theme select:focus {
    border-color: var(--rc-theme-orange) !important;
    outline: 2px solid rgba(251, 146, 60, .22) !important;
    outline-offset: 1px;
}

body.rc-premium-theme button:not(.id-nav-btn):not(.rc-admin-panel-head) {
    border-radius: 8px !important;
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease, background-color .16s ease;
}

body.rc-premium-theme button:not(.id-nav-btn):not(.rc-admin-panel-head):hover {
    transform: translateY(-1px);
    filter: saturate(1.04);
}

body.rc-premium-theme button[class*="bg-emerald-600"],
body.rc-premium-theme button[class*="bg-amber-600"] {
    background: linear-gradient(135deg, #fdba74, var(--rc-theme-orange), var(--rc-theme-orange-deep)) !important;
    color: #fff7ed !important;
    box-shadow: 0 7px 16px rgba(124, 45, 18, .22) !important;
}

body.rc-premium-theme button[class*="bg-blue-600"]:not(.id-nav-btn) {
    background: linear-gradient(135deg, #60a5fa, var(--rc-theme-blue), var(--rc-theme-blue-deep)) !important;
    color: #fff !important;
    box-shadow: 0 7px 16px rgba(37, 99, 235, .20) !important;
}

body.rc-premium-theme button[class*="bg-slate-800"],
body.rc-premium-theme button[class*="bg-slate-700"],
body.rc-premium-theme button[class*="bg-slate-600"],
body.rc-premium-theme button[class*="bg-slate-500"] {
    background: linear-gradient(135deg, #334155, #111827, #030712) !important;
    color: #fff7ed !important;
    box-shadow: 0 7px 16px rgba(15, 23, 42, .20) !important;
}

body.rc-premium-theme button[class*="bg-red-600"],
body.rc-premium-theme .rc-delete-pill {
    background: linear-gradient(135deg, #ef4444, #dc2626, #7f1d1d) !important;
    color: #fff !important;
    box-shadow: 0 7px 16px rgba(127, 29, 29, .20) !important;
}

body.rc-premium-theme .rc-admin-panel-head {
    background: linear-gradient(115deg, #070707, #431407 45%, #0b1b3a 100%) !important;
    border-bottom: 1px solid rgba(255, 247, 237, .10);
}

body.rc-premium-theme .rc-admin-section,
body.rc-premium-theme .rc-doc-text-editor {
    border-color: rgba(120, 53, 15, .18) !important;
    background: rgba(255, 255, 255, .82) !important;
}

body.rc-premium-theme #termek_katalogus {
    gap: 0 !important;
}

body.rc-premium-theme #termek_katalogus > div {
    border-color: rgba(120, 53, 15, .20) !important;
    background: rgba(255, 255, 255, .78) !important;
    box-shadow: 0 9px 20px rgba(15, 23, 42, .10) !important;
}

body.rc-premium-theme #termek_katalogus > div:first-child {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

body.rc-premium-theme #termek_katalogus > div:nth-child(2) {
    margin-left: -1px;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

body.rc-premium-theme #termek_katalogus > div > div:first-child {
    border-color: rgba(255, 247, 237, .12) !important;
}

body.rc-premium-theme #termek_katalogus > div:first-child > div:first-child {
    background: linear-gradient(115deg, #070707, #431407 48%, #0b1b3a 100%) !important;
    color: #fff7ed !important;
}

body.rc-premium-theme #termek_katalogus > div:nth-child(2) > div:first-child {
    background: linear-gradient(115deg, #1c0b04, #4a1706 45%, #0b1b3a 100%) !important;
    color: #fff7ed !important;
}

body.rc-premium-theme .bg-blue-50 {
    border-color: rgba(251, 146, 60, .28) !important;
    background: rgba(255, 247, 237, .70) !important;
}

body.rc-premium-theme .border-blue-100,
body.rc-premium-theme .border-blue-200 {
    border-color: rgba(251, 146, 60, .24) !important;
}

body.rc-premium-theme .text-blue-700,
body.rc-premium-theme .text-blue-800 {
    color: #7c2d12 !important;
}

body.rc-premium-theme .text-blue-600 {
    color: #ea580c !important;
}

body.rc-premium-theme .bg-slate-50,
body.rc-premium-theme .bg-slate-100 {
    border-color: rgba(120, 53, 15, .16) !important;
    background: linear-gradient(180deg, rgba(255, 251, 247, .88), rgba(248, 250, 252, .78)) !important;
}

body.rc-premium-theme .border-slate-200,
body.rc-premium-theme .border-slate-300 {
    border-color: rgba(120, 53, 15, .20) !important;
}

body.rc-premium-theme .divide-gray-200 > :not([hidden]) ~ :not([hidden]),
body.rc-premium-theme .divide-slate-200 > :not([hidden]) ~ :not([hidden]) {
    border-color: rgba(120, 53, 15, .14) !important;
}

body.rc-premium-theme table {
    border-color: rgba(120, 53, 15, .16) !important;
}

body.rc-premium-theme thead,
body.rc-premium-theme table thead.bg-slate-100,
body.rc-premium-theme thead tr {
    background: linear-gradient(115deg, rgba(255, 247, 237, .96), rgba(239, 246, 255, .84)) !important;
}

body.rc-premium-theme th {
    background: transparent !important;
    color: #334155 !important;
    border-color: rgba(120, 53, 15, .14) !important;
}

body.rc-premium-theme tbody.bg-white,
body.rc-premium-theme tbody tr {
    background-color: rgba(255, 255, 255, .74) !important;
}

body.rc-premium-theme tbody tr:hover {
    background-color: rgba(255, 247, 237, .84) !important;
}

body.rc-premium-theme .rc-compact-table th {
    background: transparent !important;
    color: #334155 !important;
}

body.rc-premium-theme .rc-row-head td {
    background: rgba(255, 247, 237, .82) !important;
}

body.rc-premium-theme .rc-row-sub td {
    background: rgba(255, 255, 255, .78) !important;
}

body.rc-premium-theme .overflow-x-auto.border {
    border-color: rgba(120, 53, 15, .18) !important;
    background: rgba(255, 255, 255, .58) !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08) !important;
}

body.rc-premium-theme #termek_szekcio > .mb-4,
body.rc-premium-theme #ugyfel_szekcio > .bg-slate-50,
body.rc-premium-theme #ugyfel_szekcio > .mt-5,
body.rc-premium-theme #ajanlat_szoveg_szerkeszto,
body.rc-premium-theme #termek_lista_test,
body.rc-premium-theme #ajanlatok_lista_test,
body.rc-premium-theme #elkeszult_ajanlatok_lista_test,
body.rc-premium-theme #ugyfelek_lista_test {
    color: #1f2937;
}

body.rc-premium-theme #termek_szekcio > .mb-4,
body.rc-premium-theme #ugyfel_szekcio > .bg-slate-50,
body.rc-premium-theme #ugyfel_szekcio > .mt-5,
body.rc-premium-theme #ajanlat_szoveg_szerkeszto {
    border-color: rgba(251, 146, 60, .24) !important;
    background: rgba(255, 251, 247, .76) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .70), 0 7px 18px rgba(15, 23, 42, .06) !important;
}

body.rc-premium-theme .rc-active-quote-pill {
    border-color: rgba(37, 99, 235, .22) !important;
    background: rgba(255, 255, 255, .76) !important;
    color: #334155 !important;
}

body.rc-premium-theme .rc-active-quote-pill strong {
    color: #1d4ed8 !important;
}

body.rc-premium-theme .rc-quote-dirty-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(234, 88, 12, .28);
    border-radius: 999px;
    background: rgba(255, 247, 237, .92);
    color: #9a3412;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    margin-left: 8px;
    padding: 4px 8px;
    text-transform: uppercase;
}

body.rc-premium-theme .rc-active-dossier-toolbar,
body.rc-premium-theme .rc-active-dossier-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

body.rc-premium-theme .rc-active-dossier-toolbar {
    padding-bottom: 2px;
}

body.rc-premium-theme .rc-active-dossier-section {
    padding-top: 2px;
}

body.rc-premium-theme .rc-active-dossier-section-title {
    min-width: 112px;
    color: #475569;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
}

body.rc-premium-theme .rc-active-dossier-items {
    display: flex;
    flex: 1 1 260px;
    flex-wrap: wrap;
    gap: 6px;
}

body.rc-premium-theme .rc-active-dossier-label,
body.rc-premium-theme .rc-active-dossier-state,
body.rc-premium-theme .rc-active-dossier-empty,
body.rc-premium-theme .rc-active-dossier-action,
body.rc-premium-theme .rc-active-dossier-chip {
    display: inline-flex;
    min-height: 25px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(120, 53, 15, .18);
    border-radius: 8px;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(15, 23, 42, .07);
}

body.rc-premium-theme .rc-active-dossier-label {
    background: rgba(248, 250, 252, .82);
    color: #475569;
}

body.rc-premium-theme .rc-active-dossier-state {
    background: rgba(255, 255, 255, .86);
    color: #64748b;
}

body.rc-premium-theme .rc-active-dossier-empty {
    background: rgba(255, 255, 255, .72);
    color: #94a3b8;
    font-style: italic;
}

body.rc-premium-theme .rc-active-dossier-action-edit {
    background: rgba(255, 247, 237, .88) !important;
    color: #9a3412 !important;
}

body.rc-premium-theme .rc-active-dossier-action-new {
    background: linear-gradient(135deg, #334155, #111827, #030712) !important;
    color: #fff7ed !important;
}

body.rc-premium-theme .rc-active-dossier-chip-order {
    background: rgba(239, 246, 255, .86) !important;
    border-color: rgba(37, 99, 235, .22) !important;
    color: #1d4ed8 !important;
}

body.rc-premium-theme .rc-archive-table-wrap {
    overflow: hidden;
}

body.rc-premium-theme .rc-archive-count {
    display: inline-flex;
    min-width: 30px;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(120, 53, 15, .16);
    padding: 2px 9px;
    font-weight: 900;
    line-height: 1;
}

body.rc-premium-theme .rc-archive-count-offer {
    background: rgba(255, 247, 237, .86);
    color: #9a3412;
}

body.rc-premium-theme .rc-archive-count-order {
    background: rgba(239, 246, 255, .86);
    color: #1d4ed8;
}

body.rc-premium-theme .rc-archive-expanded-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.rc-premium-theme .rc-archive-section {
    border: 1px solid rgba(120, 53, 15, .18);
    border-radius: 10px;
    background: rgba(255, 251, 247, .72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
    overflow: hidden;
}

body.rc-premium-theme .rc-archive-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(120, 53, 15, .14);
    background: linear-gradient(115deg, rgba(255, 247, 237, .96), rgba(239, 246, 255, .74));
    color: #475569;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .03em;
    padding: 9px 11px;
    text-transform: uppercase;
}

body.rc-premium-theme .rc-archive-section-head span:last-child {
    display: inline-flex;
    min-width: 22px;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .80);
    padding: 2px 7px;
    color: #334155;
}

body.rc-premium-theme .rc-archive-section-list {
    display: grid;
    gap: 9px;
    padding: 10px;
}

body.rc-premium-theme .rc-archive-card {
    min-height: 100px;
    border: 1px solid rgba(120, 53, 15, .18);
    border-left-width: 4px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .07);
    padding: 12px;
}

body.rc-premium-theme .rc-archive-card-offer {
    border-left-color: #ea580c;
}

body.rc-premium-theme .rc-archive-card-order {
    border-left-color: #2563eb;
}

body.rc-premium-theme .rc-archive-card-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 72px;
}

body.rc-premium-theme .rc-archive-card-title {
    color: #172033;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

body.rc-premium-theme .rc-archive-card-meta {
    color: #64748b;
    font-size: 11px;
    line-height: 1.25;
    margin-top: 3px;
}

body.rc-premium-theme .rc-archive-actions {
    display: grid;
    grid-template-columns: repeat(2, 148px);
    align-items: stretch;
    justify-content: end;
    gap: 6px;
    width: 302px;
}

body.rc-premium-theme .rc-archive-btn {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    min-height: 31px;
    align-items: center;
    justify-content: center;
    border: 0 !important;
    border-radius: 8px !important;
    padding: 7px 10px !important;
    font-size: 11.5px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
}

body.rc-premium-theme .rc-archive-empty {
    border: 1px dashed rgba(120, 53, 15, .24);
    border-radius: 9px;
    background: rgba(255, 255, 255, .68);
    color: #64748b;
    font-size: 12px;
    font-style: italic;
    padding: 12px;
}

body.rc-premium-theme .text-slate-400 {
    color: #94a3b8 !important;
}

body.rc-premium-theme .text-slate-500,
body.rc-premium-theme .text-slate-600,
body.rc-premium-theme .text-slate-700 {
    color: #475569 !important;
}

body.rc-premium-theme h1,
body.rc-premium-theme h2,
body.rc-premium-theme h3,
body.rc-premium-theme .text-slate-800 {
    color: #172033 !important;
}

body.rc-premium-theme [class*="bg-blue-100"] {
    border-color: rgba(37, 99, 235, .18) !important;
    background: rgba(239, 246, 255, .72) !important;
    color: #1d4ed8 !important;
}

body.rc-premium-theme [class*="bg-emerald-50"],
body.rc-premium-theme [class*="bg-emerald-100"] {
    border-color: rgba(234, 88, 12, .18) !important;
    background: rgba(255, 247, 237, .78) !important;
    color: #7c2d12 !important;
}

body.rc-premium-theme [class*="bg-red-100"] {
    border-color: rgba(220, 38, 38, .22) !important;
    background: rgba(254, 242, 242, .84) !important;
}

body.rc-premium-theme #ajanlat_vegosszeg {
    color: #7c2d12 !important;
}

body.rc-premium-theme #termek_lista_test:empty::after,
body.rc-premium-theme #ajanlatok_lista_test:empty::after,
body.rc-premium-theme #elkeszult_ajanlatok_lista_test:empty::after {
    color: #94a3b8;
}

body.rc-premium-theme .rc-product-info-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

body.rc-premium-theme .rc-product-info-toolbar h3 {
    margin: 0;
    color: #172033;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .02em;
    text-transform: uppercase;
}

body.rc-premium-theme .rc-product-info-toolbar p {
    margin: 5px 0 0;
    max-width: 820px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.35;
}

body.rc-premium-theme .rc-product-info-add,
body.rc-premium-theme .rc-product-info-save {
    flex: 0 0 auto;
    border: 0 !important;
    background: linear-gradient(135deg, #60a5fa, #2563eb, #0b1b3a) !important;
    color: #fff !important;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    padding: 10px 13px !important;
    white-space: nowrap;
}

body.rc-premium-theme .rc-product-info-searchbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

body.rc-premium-theme .rc-product-info-searchbar input {
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, .84);
    color: #172033;
    font-size: 13px;
}

body.rc-premium-theme .rc-product-info-searchbar span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(120, 53, 15, .18);
    border-radius: 999px;
    background: rgba(255, 247, 237, .82);
    color: #9a3412;
    font-size: 11px;
    font-weight: 900;
    padding: 5px 11px;
    white-space: nowrap;
}

body.rc-premium-theme .rc-product-info-manager {
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

body.rc-premium-theme .rc-product-info-list,
body.rc-premium-theme .rc-product-info-editor-card,
body.rc-premium-theme .rc-product-info-editor-empty {
    border: 1px solid rgba(120, 53, 15, .18);
    border-radius: 10px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .07);
}

body.rc-premium-theme .rc-product-info-list {
    display: grid;
    align-content: start;
    gap: 8px;
    max-height: 470px;
    overflow-y: auto;
    padding: 10px;
}

body.rc-premium-theme .rc-product-info-list-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    width: 100%;
    min-height: 74px;
    align-items: start;
    border: 1px solid rgba(120, 53, 15, .13) !important;
    border-left: 4px solid transparent !important;
    border-radius: 9px !important;
    background: rgba(248, 250, 252, .80) !important;
    color: #172033 !important;
    padding: 9px !important;
    text-align: left;
    box-shadow: none !important;
}

body.rc-premium-theme .rc-product-info-list-item-active {
    border-color: rgba(249, 115, 22, .45) !important;
    border-left-color: #ea580c !important;
    background: rgba(255, 247, 237, .94) !important;
    box-shadow: 0 7px 14px rgba(124, 45, 18, .11) !important;
}

body.rc-premium-theme .rc-product-info-list-index {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    color: #475569;
    font-size: 11px;
    font-weight: 900;
}

body.rc-premium-theme .rc-product-info-list-content {
    min-width: 0;
}

body.rc-premium-theme .rc-product-info-list-content strong,
body.rc-premium-theme .rc-product-info-list-content em,
body.rc-premium-theme .rc-product-info-list-content small {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.rc-premium-theme .rc-product-info-list-content strong {
    color: #172033;
    font-size: 12.5px;
    font-weight: 950;
}

body.rc-premium-theme .rc-product-info-list-content em {
    margin-top: 3px;
    color: #64748b;
    font-size: 10.5px;
    font-style: normal;
    font-weight: 700;
}

body.rc-premium-theme .rc-product-info-list-content small {
    margin-top: 5px;
    color: #94a3b8;
    font-size: 10.5px;
    font-weight: 650;
}

body.rc-premium-theme .rc-product-info-editor-card {
    min-height: 470px;
    padding: 14px;
}

body.rc-premium-theme .rc-product-info-editor-head,
body.rc-premium-theme .rc-product-info-editor-foot {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

body.rc-premium-theme .rc-product-info-editor-kicker {
    color: #64748b;
    font-size: 10.5px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

body.rc-premium-theme .rc-product-info-editor-title {
    margin-top: 3px;
    color: #172033;
    font-size: 16px;
    font-weight: 950;
    line-height: 1.2;
}

body.rc-premium-theme .rc-product-info-editor-meta {
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

body.rc-premium-theme .rc-product-info-delete {
    border: 0 !important;
    background: rgba(254, 242, 242, .92) !important;
    color: #dc2626 !important;
    box-shadow: none !important;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    padding: 8px 11px !important;
}

body.rc-premium-theme .rc-product-info-editor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

body.rc-premium-theme .rc-product-info-editor-grid label {
    display: block;
}

body.rc-premium-theme .rc-product-info-editor-grid span {
    display: block;
    color: #344054;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 5px;
}

body.rc-premium-theme .rc-product-info-editor-grid input,
body.rc-premium-theme .rc-product-info-editor-grid textarea {
    width: 100%;
    background: rgba(255, 255, 255, .92);
    color: #172033;
    font-size: 13px;
    padding: 9px 10px;
}

body.rc-premium-theme .rc-product-info-editor-grid textarea {
    min-height: 238px;
    line-height: 1.42;
    resize: vertical;
}

body.rc-premium-theme .rc-product-info-text-field {
    grid-column: 1 / -1;
}

body.rc-premium-theme .rc-product-info-editor-foot {
    align-items: center;
    border-top: 1px solid rgba(120, 53, 15, .14);
    margin-top: 14px;
    padding-top: 12px;
}

body.rc-premium-theme .rc-product-info-editor-foot span {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
}

body.rc-premium-theme .rc-product-info-empty,
body.rc-premium-theme .rc-product-info-editor-empty {
    color: #64748b;
    font-size: 12px;
    font-style: italic;
    padding: 18px;
}

body.rc-premium-theme .rc-product-info-empty button {
    display: block;
    margin-top: 10px;
    border: 0 !important;
    background: linear-gradient(135deg, #60a5fa, #2563eb, #0b1b3a) !important;
    color: #fff !important;
    font-size: 11px;
    font-weight: 900;
    padding: 8px 10px !important;
}

body.rc-premium-theme .rc-quote-bulk-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid rgba(120, 53, 15, .16);
    border-radius: 10px;
    background: rgba(255, 251, 247, .74);
    box-shadow: 0 7px 18px rgba(15, 23, 42, .06);
    margin: 0 0 8px;
    padding: 8px 10px;
}

body.rc-premium-theme .rc-quote-bulk-info {
    color: #475569;
    font-size: 12px;
    font-weight: 850;
}

body.rc-premium-theme .rc-quote-bulk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

body.rc-premium-theme .rc-quote-bulk-actions button {
    border: 0 !important;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    padding: 8px 10px !important;
}

body.rc-premium-theme .rc-quote-bulk-clear {
    background: rgba(248, 250, 252, .90) !important;
    color: #475569 !important;
    box-shadow: none !important;
}

body.rc-premium-theme .rc-quote-bulk-delete {
    background: linear-gradient(135deg, #ef4444, #dc2626, #7f1d1d) !important;
    color: #fff !important;
}

body.rc-premium-theme .rc-quote-bulk-actions button:disabled {
    cursor: not-allowed;
    filter: grayscale(.35);
    opacity: .48;
    transform: none !important;
}

body.rc-premium-theme .rc-quote-bulk-checkbox {
    width: 15px;
    height: 15px;
    accent-color: #ea580c;
}

body.rc-premium-theme .rc-quote-qty-chip {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(120, 53, 15, .18);
    border-radius: 999px;
    background: rgba(255, 247, 237, .82);
    color: #9a3412;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    padding: 5px 9px;
}

body.rc-premium-theme .rc-quote-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    white-space: nowrap;
}

body.rc-premium-theme .rc-quote-alternative-select {
    min-height: 30px;
    max-width: 128px;
    border-radius: 8px !important;
    background: rgba(248, 250, 252, .92) !important;
    color: #334155 !important;
    font-size: 11px !important;
    font-weight: 850;
    padding: 5px 7px !important;
}

body.rc-premium-theme .rc-price-diff-warning {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(234, 88, 12, .22);
    border-radius: 999px;
    background: rgba(255, 247, 237, .86);
    color: #9a3412;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.15;
    margin-left: 8px;
    padding: 4px 7px;
    vertical-align: middle;
}

body.rc-premium-theme .rc-order-copy-params-btn {
    border: 1px solid rgba(120, 53, 15, .18) !important;
    background: rgba(255, 247, 237, .86) !important;
    box-shadow: none !important;
    color: #9a3412 !important;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    padding: 7px 9px !important;
}

body.rc-premium-theme .rc-order-source-grid input {
    background: rgba(255, 255, 255, .92) !important;
    font-weight: 750;
}

body.rc-premium-theme .rc-product-alternative-list {
    display: grid;
    gap: 7px;
}

body.rc-premium-theme .rc-product-alternative-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid rgba(120, 53, 15, .16);
    border-radius: 9px;
    background: rgba(255, 247, 237, .72);
    color: #172033;
    font-size: 12px;
    font-weight: 850;
    padding: 8px 10px;
}

body.rc-premium-theme .rc-product-alternative-row button {
    border: 0 !important;
    background: rgba(254, 242, 242, .92) !important;
    color: #dc2626 !important;
    box-shadow: none !important;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 9px !important;
}

@media (max-width: 767px) {
    body.rc-premium-theme .rc-product-info-toolbar,
    body.rc-premium-theme .rc-product-info-searchbar,
    body.rc-premium-theme .rc-product-info-manager,
    body.rc-premium-theme .rc-product-info-editor-grid {
        grid-template-columns: 1fr;
    }

    body.rc-premium-theme .rc-product-info-toolbar {
        display: grid;
    }

    body.rc-premium-theme .rc-product-info-list {
        max-height: 280px;
    }

    body.rc-premium-theme .rc-archive-expanded-grid {
        grid-template-columns: 1fr;
    }

    body.rc-premium-theme .rc-archive-card-main {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    body.rc-premium-theme .rc-archive-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    body.rc-premium-theme .rc-archive-btn {
        width: 100%;
        min-width: 0;
    }

    body.rc-premium-theme #termek_katalogus > div:first-child {
        border-top-right-radius: .5rem !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    body.rc-premium-theme #termek_katalogus > div:nth-child(2) {
        margin-top: -1px;
        margin-left: 0;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        border-bottom-left-radius: .5rem !important;
    }
}

@keyframes rcPremiumBackground {
    0% { background-position: 0% 38%; }
    100% { background-position: 100% 62%; }
}

@keyframes rcPremiumColorWash {
    0% { background-position: 0% 50%; opacity: .72; }
    100% { background-position: 100% 50%; opacity: .92; }
}

@keyframes rcPremiumAccent {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes rcPremiumNavWash {
    0% { left: -55%; opacity: .18; }
    18% { opacity: .68; }
    78% { opacity: .78; }
    100% { left: 112%; opacity: .18; }
}

@media (prefers-reduced-motion: reduce) {
    body.rc-premium-theme,
    body.rc-premium-theme::before,
    #rc_main_nav.rc-premium-nav::before,
    #rc_main_nav.rc-premium-nav::after {
        animation: none !important;
    }
}

@media print {
    body.rc-premium-theme {
        background: #fff !important;
    }

    body.rc-premium-theme::before,
    #rc_main_nav.rc-premium-nav::before,
    #rc_main_nav.rc-premium-nav::after {
        display: none !important;
    }
}
