/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-1awvulfoob] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-1awvulfoob] {
    flex: 1;
    background-color: #ffffff;
}

.sidebar[b-1awvulfoob] {
    background-color: var(--kore-bg-light);
    box-shadow: 1px 0 3px rgba(0, 0, 0, 0.05);
    transition: width 0.3s ease, transform 0.3s ease;
}

/* Hidden checkbox for toggle state */
.sidebar-toggle-checkbox[b-1awvulfoob] {
    display: none;
}

.top-row[b-1awvulfoob] {
    background-color: #ffffff;
    border-bottom: 2px solid var(--kore-secondary);
    justify-content: space-between;
    height: 4rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.top-row-left[b-1awvulfoob] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-row-right[b-1awvulfoob] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-toggle[b-1awvulfoob] {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--kore-bg-light);
    border: 1px solid var(--kore-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-toggle:hover[b-1awvulfoob] {
    background: var(--kore-primary);
    border-color: var(--kore-primary);
    color: white;
}

.toggle-icon-open[b-1awvulfoob],
.toggle-icon-close[b-1awvulfoob] {
    font-size: 1.25rem;
    color: var(--kore-text);
    transition: color 0.2s ease;
}

.sidebar-toggle:hover .toggle-icon-open[b-1awvulfoob],
.sidebar-toggle:hover .toggle-icon-close[b-1awvulfoob] {
    color: white;
}

/* Show/hide icons based on state */
.toggle-icon-close[b-1awvulfoob] {
    display: none;
}

.sidebar-toggle-checkbox:checked ~ main .toggle-icon-open[b-1awvulfoob] {
    display: none;
}

.sidebar-toggle-checkbox:checked ~ main .toggle-icon-close[b-1awvulfoob] {
    display: inline;
}

.brand-header[b-1awvulfoob] {
    display: flex;
    align-items: center;
}

.brand-title[b-1awvulfoob] {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Top Navigation Links */
.top-nav-link[b-1awvulfoob] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--kore-text);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.top-nav-link:hover[b-1awvulfoob] {
    background: var(--kore-bg-light);
    color: var(--kore-primary);
}

.top-nav-link.login-link[b-1awvulfoob] {
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-secondary) 100%);
    color: white;
}

.top-nav-link.login-link:hover[b-1awvulfoob] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(21, 83, 115, 0.3);
}

.top-nav-icon[b-1awvulfoob] {
    font-size: 1.1rem;
}

.top-nav-text[b-1awvulfoob] {
    font-size: 0.9rem;
}

@media (max-width: 640.98px) {
    .top-row[b-1awvulfoob] {
        justify-content: space-between;
    }

    .brand-title[b-1awvulfoob] {
        font-size: 1rem;
    }

    .top-nav-text[b-1awvulfoob] {
        display: none;
    }

    .top-nav-link[b-1awvulfoob] {
        padding: 0.5rem;
    }
}

@media (min-width: 641px) {
    .page[b-1awvulfoob] {
        flex-direction: row;
    }

    .sidebar[b-1awvulfoob] {
        width: 280px;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow: hidden;
    }

    /* Default collapsed state (checkbox is checked by default) */
    .sidebar-toggle-checkbox:not(:checked) ~ .sidebar[b-1awvulfoob] {
        width: 0;
    }

    /* Expanded state */
    .sidebar-toggle-checkbox:checked ~ .sidebar[b-1awvulfoob] {
        width: 280px;
    }

    .sidebar-toggle[b-1awvulfoob] {
        display: flex;
    }

    .top-row[b-1awvulfoob] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-1awvulfoob]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-1awvulfoob], article[b-1awvulfoob] {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }
}

#blazor-error-ui[b-1awvulfoob] {
    color-scheme: light only;
    background: linear-gradient(135deg, #FFE5E5 0%, #FFD4D4 100%);
    border-top: 2px solid #E50000;
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 1rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #CC0000;
    font-weight: 500;
}

    #blazor-error-ui .dismiss[b-1awvulfoob] {
        cursor: pointer;
        position: absolute;
        right: 1rem;
        top: 1rem;
        font-size: 1.5rem;
        color: #CC0000;
        transition: color 0.3s ease;
    }

    #blazor-error-ui .dismiss:hover[b-1awvulfoob] {
        color: #990000;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ikx48i0jn5] {
	appearance: none;
	cursor: pointer;
	width: 3rem;
	height: 2.25rem;
	color: var(--kore-text);
	position: absolute;
	top: 0.75rem;
	right: 1rem;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.navbar-toggler[b-ikx48i0jn5]::before {
	content: "";
	display: block;
	width: 1.5rem;
	height: 2px;
	margin: 0 auto;
	box-shadow: 0 -5px 0 0 var(--kore-text), 0 0 0 0 var(--kore-text), 0 5px 0 0 var(--kore-text);
	background-color: var(--kore-text);
	border-radius: 999px;
}

.navbar-toggler:checked[b-ikx48i0jn5] {
	background-color: rgba(0, 0, 0, 0.15);
	transform: scale(0.96);
}

.navbar-toggler:hover[b-ikx48i0jn5] {
	background-color: rgba(0, 0, 0, 0.12);
}

.top-row[b-ikx48i0jn5] {
	min-height: 3.5rem;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--kore-border);
}

.navbar-brand[b-ikx48i0jn5] {
	display: flex;
	align-items: center;
	padding: 0.35rem 0;
}

.navbar-brand img[b-ikx48i0jn5] {
	height: 3rem;
	width: auto;
}

.bi[b-ikx48i0jn5] {
	display: inline-block;
	position: relative;
	width: 1.25rem;
	height: 1.25rem;
	margin-right: 0.75rem;
	top: -1px;
	background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ikx48i0jn5] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333333' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-search-nav-menu[b-ikx48i0jn5] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333333' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
}

.bi-play-circle-nav-menu[b-ikx48i0jn5] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333333' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M6.271 5.055a.5.5 0 0 1 .52.038l3.5 2.5a.5.5 0 0 1 0 .814l-3.5 2.5A.5.5 0 0 1 6 10.5v-5a.5.5 0 0 1 .271-.445z'/%3E%3C/svg%3E");
}

.bi-info-circle-nav-menu[b-ikx48i0jn5] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333333' class='bi bi-info-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-ikx48i0jn5] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333333' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-ikx48i0jn5] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333333' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-ikx48i0jn5] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333333' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.bi-cart-fill-nav-menu[b-ikx48i0jn5] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333333' class='bi bi-cart-fill' viewBox='0 0 16 16'%3E%3Cpath d='M0 1.5A.5.5 0 0 1 .5 1H2a.5.5 0 0 1 .485.379L2.89 3H14.5a.5.5 0 0 1 .491.592l-1.5 8A.5.5 0 0 1 13 12H4a.5.5 0 0 1-.491-.408L2.01 3.607 1.61 2H.5a.5.5 0 0 1-.5-.5zM5 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm7 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-7 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E");
}

.bi-shield-nav-menu[b-ikx48i0jn5] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333333' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61.44 61.44 0 0 0-2.837.856.481.481 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.725 10.725 0 0 0 2.287 2.233c.346.244.652.42.893.533.12.057.218.095.293.118a.55.55 0 0 0 .101.025.615.615 0 0 0 .1-.025c.076-.023.174-.061.294-.118.24-.113.547-.29.893-.533a10.726 10.726 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.775 11.775 0 0 1-2.517 2.453 7.159 7.159 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7.158 7.158 0 0 1-1.048-.625 11.777 11.777 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 62.456 62.456 0 0 1 5.072.56z'/%3E%3C/svg%3E");
}

.nav-item[b-ikx48i0jn5] {
	font-size: 0.95rem;
	padding-bottom: 0.25rem;
}

	.nav-item:first-of-type[b-ikx48i0jn5] {
		padding-top: 1.5rem;
	}

	.nav-item:last-of-type[b-ikx48i0jn5] {
		padding-bottom: 1rem;
	}

		.nav-item[b-ikx48i0jn5]  .nav-link {
			color: var(--kore-text);
			background: none;
			border: none;
			border-radius: 8px;
			height: 2.75rem;
			display: flex;
			align-items: center;
			line-height: 2.75rem;
			width: 100%;
			padding: 0 1rem;
			margin: 0.15rem 0;
			transition: background-color 0.15s ease, color 0.15s ease;
			font-weight: 500;
		}

	.nav-item[b-ikx48i0jn5]  a.active {
		background-color: rgba(61, 52, 139, 0.1);
		color: var(--kore-primary);
	}

	.nav-item[b-ikx48i0jn5]  .nav-link:hover {
		background-color: rgba(0, 0, 0, 0.05);
		color: var(--kore-primary);
	}

.nav-scrollable[b-ikx48i0jn5] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-ikx48i0jn5] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ikx48i0jn5] {
        display: none;
    }

    .nav-scrollable[b-ikx48i0jn5] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-670pk8vq3f],
.components-reconnect-repeated-attempt-visible[b-670pk8vq3f],
.components-reconnect-failed-visible[b-670pk8vq3f],
.components-pause-visible[b-670pk8vq3f],
.components-resume-failed-visible[b-670pk8vq3f],
.components-rejoining-animation[b-670pk8vq3f] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-670pk8vq3f],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-670pk8vq3f],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-670pk8vq3f],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-670pk8vq3f],
#components-reconnect-modal.components-reconnect-retrying[b-670pk8vq3f],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-670pk8vq3f],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-670pk8vq3f],
#components-reconnect-modal.components-reconnect-failed[b-670pk8vq3f],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-670pk8vq3f] {
    display: block;
}


#components-reconnect-modal[b-670pk8vq3f] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-670pk8vq3f 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-670pk8vq3f 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-670pk8vq3f 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-670pk8vq3f]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-670pk8vq3f 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-670pk8vq3f {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-670pk8vq3f {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-670pk8vq3f {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-670pk8vq3f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-670pk8vq3f] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-670pk8vq3f] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-670pk8vq3f] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-670pk8vq3f] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-670pk8vq3f] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-670pk8vq3f] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-670pk8vq3f 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-670pk8vq3f] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-670pk8vq3f {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
/* Search Hero Banner */
.search-hero-banner[b-uwetoxwyvj] {
    display: block;
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-secondary) 100%);
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.search-hero-banner[b-uwetoxwyvj]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer-b-uwetoxwyvj 3s infinite;
}

@keyframes shimmer-b-uwetoxwyvj {
    0% { left: -100%; }
    100% { left: 100%; }
}

.search-hero-content[b-uwetoxwyvj] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.search-hero-header[b-uwetoxwyvj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-hero-icon[b-uwetoxwyvj] {
    font-size: 1.75rem;
}

.search-hero-text[b-uwetoxwyvj] {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.search-hero-selectors[b-uwetoxwyvj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-select[b-uwetoxwyvj] {
    padding: 0.625rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--kore-text);
    background: white;
    border: 2px solid transparent;
    border-radius: 8px;
    min-width: 140px;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
}

.hero-select:hover:not(:disabled)[b-uwetoxwyvj] {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-select:focus[b-uwetoxwyvj] {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.hero-select:disabled[b-uwetoxwyvj] {
    opacity: 0.6;
    cursor: not-allowed;
}

.hero-search-btn[b-uwetoxwyvj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--kore-primary);
    background: white;
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-search-btn:hover:not(:disabled)[b-uwetoxwyvj] {
    background: transparent;
    color: white;
    transform: translateX(4px);
}

.hero-search-btn:disabled[b-uwetoxwyvj] {
    opacity: 0.5;
    cursor: not-allowed;
}

.hero-search-btn .search-arrow[b-uwetoxwyvj] {
    transition: transform 0.2s ease;
}

.hero-search-btn:hover:not(:disabled) .search-arrow[b-uwetoxwyvj] {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .search-hero-banner[b-uwetoxwyvj] {
        padding: 1.25rem 1rem;
    }

    .search-hero-text[b-uwetoxwyvj] {
        font-size: 1.25rem;
    }

    .search-hero-icon[b-uwetoxwyvj] {
        font-size: 1.5rem;
    }

    .search-hero-selectors[b-uwetoxwyvj] {
        width: 100%;
    }

    .hero-select[b-uwetoxwyvj] {
        flex: 1;
        min-width: 100px;
    }

    .hero-search-btn[b-uwetoxwyvj] {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .search-hero-selectors[b-uwetoxwyvj] {
        flex-direction: column;
    }

    .hero-select[b-uwetoxwyvj],
    .hero-search-btn[b-uwetoxwyvj] {
        width: 100%;
    }
}

/* Section One - Hero */
.section-one[b-uwetoxwyvj] {
    background: #ffffff;
    color: var(--kore-text);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

.hero-container[b-uwetoxwyvj] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content[b-uwetoxwyvj] {
    flex: 1;
    max-width: 600px;
}

.hero-image[b-uwetoxwyvj] {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img[b-uwetoxwyvj] {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.hero-badge[b-uwetoxwyvj] {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--kore-primary);
}

.section-one h1[b-uwetoxwyvj] {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--kore-text);
}

.hero-description[b-uwetoxwyvj] {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--kore-text-light);
    margin-bottom: 2.5rem;
}

.hero-stats[b-uwetoxwyvj] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item[b-uwetoxwyvj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--kore-bg-light);
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid var(--kore-border);
}

.stat-icon[b-uwetoxwyvj] {
    font-size: 1.25rem;
}

.stat-text[b-uwetoxwyvj] {
    font-size: 0.9rem;
    color: var(--kore-text);
}

.stat-text strong[b-uwetoxwyvj] {
    color: var(--kore-primary);
}

.hero-tagline[b-uwetoxwyvj] {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--kore-text-light);
    padding-top: 2rem;
    border-top: 1px solid var(--kore-border);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Two - What Drives Us */
.section-two[b-uwetoxwyvj] {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.section-title[b-uwetoxwyvj] {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--kore-text);
    margin-bottom: 3rem;
}

.drives-grid[b-uwetoxwyvj] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.drive-card[b-uwetoxwyvj] {
    background: var(--kore-bg);
    border: 1px solid var(--kore-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.drive-card:hover[b-uwetoxwyvj],
.drive-card.active[b-uwetoxwyvj] {
    border-color: var(--kore-primary);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.1);
    transform: translateY(-4px);
}

.drive-card.active[b-uwetoxwyvj] {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(79, 70, 229, 0.02) 100%);
}

.drive-icon[b-uwetoxwyvj] {
    width: 56px;
    height: 56px;
    background: var(--kore-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.drive-card h3[b-uwetoxwyvj] {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--kore-text);
    margin-bottom: 0.75rem;
}

.drive-card p[b-uwetoxwyvj] {
    font-size: 0.95rem;
    color: var(--kore-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Section Three - Capabilities */
.section-three[b-uwetoxwyvj] {
    background: var(--kore-bg-light);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

.capabilities-grid[b-uwetoxwyvj] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.capability-card[b-uwetoxwyvj] {
    background: var(--kore-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--kore-border);
}

.capability-card:hover[b-uwetoxwyvj] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.capability-icon[b-uwetoxwyvj] {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.capability-card h4[b-uwetoxwyvj] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--kore-text);
    margin-bottom: 0.5rem;
}

.capability-card p[b-uwetoxwyvj] {
    font-size: 0.85rem;
    color: var(--kore-text-light);
    line-height: 1.5;
    margin: 0;
}

/* Section Four - Platform Features */
.section-four[b-uwetoxwyvj] {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.platform-header[b-uwetoxwyvj] {
    text-align: center;
    margin-bottom: 3rem;
}

.platform-header h2[b-uwetoxwyvj] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--kore-text);
    margin-bottom: 1rem;
}

.platform-header p[b-uwetoxwyvj] {
    font-size: 1.1rem;
    color: var(--kore-text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.features-tabs[b-uwetoxwyvj] {
    background: var(--kore-bg);
    border: 1px solid var(--kore-border);
    border-radius: 1rem;
    overflow: hidden;
}

.tab-list[b-uwetoxwyvj] {
    display: flex;
    background: var(--kore-bg-light);
    border-bottom: 1px solid var(--kore-border);
    overflow-x: auto;
}

.tab-button[b-uwetoxwyvj] {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--kore-text-light);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.tab-button:hover[b-uwetoxwyvj] {
    color: var(--kore-text);
    background: rgba(79, 70, 229, 0.05);
}

.tab-button.active[b-uwetoxwyvj] {
    color: var(--kore-primary);
    background: var(--kore-bg);
}

.tab-button.active[b-uwetoxwyvj]::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--kore-primary);
}

.tab-content[b-uwetoxwyvj] {
    padding: 2rem;
}

.tab-panel[b-uwetoxwyvj] {
    animation: fadeIn-b-uwetoxwyvj 0.3s ease;
}

@keyframes fadeIn-b-uwetoxwyvj {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-info h3[b-uwetoxwyvj] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--kore-text);
    margin-bottom: 1rem;
}

.tab-info > p[b-uwetoxwyvj] {
    font-size: 1rem;
    color: var(--kore-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list[b-uwetoxwyvj] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li[b-uwetoxwyvj] {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--kore-text);
    border-bottom: 1px solid var(--kore-border);
}

.feature-list li:last-child[b-uwetoxwyvj] {
    border-bottom: none;
}

.feature-list li[b-uwetoxwyvj]::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--kore-primary);
    font-weight: bold;
}

/* Section Five - Testimonials */
.section-five[b-uwetoxwyvj] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

.section-five .section-title[b-uwetoxwyvj] {
    color: white;
}

.testimonials-grid[b-uwetoxwyvj] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card[b-uwetoxwyvj] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.testimonial-card.featured[b-uwetoxwyvj] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(79, 209, 197, 0.3);
}

.quote-icon[b-uwetoxwyvj] {
    font-size: 3rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-card.featured .quote-icon[b-uwetoxwyvj] {
    color: #4fd1c5;
}

.testimonial-card p[b-uwetoxwyvj] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author[b-uwetoxwyvj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar[b-uwetoxwyvj] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--kore-primary), #4fd1c5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.author-name[b-uwetoxwyvj] {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
}

/* Section Six - CTA */
.section-six[b-uwetoxwyvj] {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.section-six h2[b-uwetoxwyvj] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--kore-text);
    margin-bottom: 1rem;
}

.section-six > p[b-uwetoxwyvj] {
    font-size: 1.1rem;
    color: var(--kore-text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-cards[b-uwetoxwyvj] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.cta-card[b-uwetoxwyvj] {
    display: block;
    background: var(--kore-bg);
    border: 1px solid var(--kore-border);
    border-radius: 1rem;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-card:hover[b-uwetoxwyvj] {
    border-color: var(--kore-primary);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.15);
    transform: translateY(-4px);
}

.cta-icon[b-uwetoxwyvj] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card h3[b-uwetoxwyvj] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--kore-text);
    margin-bottom: 0.5rem;
}

.cta-card p[b-uwetoxwyvj] {
    font-size: 0.95rem;
    color: var(--kore-text-light);
    line-height: 1.6;
    margin: 0;
}

/* SmartBox Uses Section */
.smartbox-uses-section[b-uwetoxwyvj] {
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

.uses-container[b-uwetoxwyvj] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.uses-content[b-uwetoxwyvj] {
    flex: 1.2;
}

.uses-image[b-uwetoxwyvj] {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uses-image img[b-uwetoxwyvj] {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.uses-badge[b-uwetoxwyvj] {
    display: inline-block;
    background: rgba(0, 180, 229, 0.15);
    border: 1px solid rgba(0, 180, 229, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #00b4e5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.smartbox-uses-section h2[b-uwetoxwyvj] {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: white;
}

.uses-description[b-uwetoxwyvj] {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.uses-grid[b-uwetoxwyvj] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.use-item[b-uwetoxwyvj] {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.use-item:hover[b-uwetoxwyvj] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 180, 229, 0.3);
    transform: translateY(-2px);
}

.use-icon[b-uwetoxwyvj] {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #00b4e5 0%, #0095c8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.use-text[b-uwetoxwyvj] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.use-text strong[b-uwetoxwyvj] {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.use-text span[b-uwetoxwyvj] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Key Features Section */
.key-features-section[b-uwetoxwyvj] {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.section-subtitle[b-uwetoxwyvj] {
    font-size: 1.1rem;
    color: var(--kore-text-light);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.features-grid[b-uwetoxwyvj] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card[b-uwetoxwyvj] {
    background: var(--kore-bg-light);
    border: 1px solid var(--kore-border);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover[b-uwetoxwyvj] {
    border-color: #00b4e5;
    box-shadow: 0 10px 40px rgba(0, 180, 229, 0.15);
    transform: translateY(-6px);
}

.feature-icon-wrapper[b-uwetoxwyvj] {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #00b4e5 0%, #0095c8 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 180, 229, 0.3);
}

.feature-card h3[b-uwetoxwyvj] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--kore-text);
    margin-bottom: 0.75rem;
}

.feature-card p[b-uwetoxwyvj] {
    font-size: 0.9rem;
    color: var(--kore-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Partnership Section */
.partnership-section[b-uwetoxwyvj] {
    background: linear-gradient(135deg, var(--kore-bg-light) 0%, #e8f4fc 100%);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

.partnership-container[b-uwetoxwyvj] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.partnership-content[b-uwetoxwyvj] {
    flex: 1;
}

.partnership-image[b-uwetoxwyvj] {
    flex: 0.6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partnership-image img[b-uwetoxwyvj] {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.partnership-badge[b-uwetoxwyvj] {
    display: inline-block;
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-secondary) 100%);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partnership-section h2[b-uwetoxwyvj] {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--kore-text);
}

.partnership-section > .partnership-container > .partnership-content > p[b-uwetoxwyvj] {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--kore-text-light);
    margin-bottom: 2rem;
}

.partnership-benefits[b-uwetoxwyvj] {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.benefit-item[b-uwetoxwyvj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--kore-text);
}

.benefit-item svg[b-uwetoxwyvj] {
    color: #00b4e5;
    min-width: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .capabilities-grid[b-uwetoxwyvj] {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container[b-uwetoxwyvj] {
        flex-direction: column;
        text-align: center;
    }

    .hero-content[b-uwetoxwyvj] {
        max-width: 100%;
    }

    .hero-stats[b-uwetoxwyvj] {
        align-items: center;
    }

    .stat-item[b-uwetoxwyvj] {
        width: fit-content;
    }

    .uses-container[b-uwetoxwyvj] {
        flex-direction: column;
        text-align: center;
    }

    .uses-image[b-uwetoxwyvj] {
        order: -1;
    }

    .uses-image img[b-uwetoxwyvj] {
        max-height: 300px;
    }

    .features-grid[b-uwetoxwyvj] {
        grid-template-columns: repeat(2, 1fr);
    }

    .partnership-container[b-uwetoxwyvj] {
        flex-direction: column;
        text-align: center;
    }

    .partnership-benefits[b-uwetoxwyvj] {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .section-one h1[b-uwetoxwyvj] {
        font-size: 2rem;
    }

    .hero-description[b-uwetoxwyvj] {
        font-size: 1rem;
    }

    .hero-stats[b-uwetoxwyvj] {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image img[b-uwetoxwyvj] {
        max-height: 350px;
    }

    .drives-grid[b-uwetoxwyvj],
    .testimonials-grid[b-uwetoxwyvj] {
        grid-template-columns: 1fr;
    }

    .capabilities-grid[b-uwetoxwyvj] {
        grid-template-columns: 1fr;
    }

    .cta-cards[b-uwetoxwyvj] {
        grid-template-columns: 1fr;
    }

    .tab-list[b-uwetoxwyvj] {
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .tab-button[b-uwetoxwyvj] {
        flex: 0 0 auto;
        padding: 1rem;
        font-size: 0.875rem;
    }

    .section-title[b-uwetoxwyvj],
    .platform-header h2[b-uwetoxwyvj],
    .section-six h2[b-uwetoxwyvj] {
        font-size: 1.5rem;
    }

    /* SmartBox Uses Section */
    .smartbox-uses-section[b-uwetoxwyvj] {
        padding: 3rem 1.5rem;
    }

    .smartbox-uses-section h2[b-uwetoxwyvj] {
        font-size: 1.75rem;
    }

    .uses-description[b-uwetoxwyvj] {
        font-size: 1rem;
    }

    .uses-grid[b-uwetoxwyvj] {
        grid-template-columns: 1fr;
    }

    .uses-image img[b-uwetoxwyvj] {
        max-height: 250px;
    }

    /* Key Features Section */
    .key-features-section[b-uwetoxwyvj] {
        padding: 0 1.5rem;
    }

    .section-subtitle[b-uwetoxwyvj] {
        margin-top: -1.5rem;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .features-grid[b-uwetoxwyvj] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card[b-uwetoxwyvj] {
        padding: 1.5rem;
    }

    .feature-icon-wrapper[b-uwetoxwyvj] {
        width: 60px;
        height: 60px;
    }

    /* Partnership Section */
    .partnership-section[b-uwetoxwyvj] {
        padding: 3rem 1.5rem;
    }

    .partnership-section h2[b-uwetoxwyvj] {
        font-size: 1.5rem;
    }

    .partnership-image img[b-uwetoxwyvj] {
        max-height: 200px;
    }
}
/* /Components/Pages/Admin.razor.rz.scp.css */
.admin-page[b-9mrjjro3u9] {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg);
}

.admin-header[b-9mrjjro3u9] {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.admin-header h1[b-9mrjjro3u9] {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-sm);
}

.admin-subtitle[b-9mrjjro3u9] {
    color: var(--kore-text-light);
    font-size: var(--font-size-lg);
}

/* Loading State */
.loading-state[b-9mrjjro3u9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: var(--kore-text-light);
}

.spinner[b-9mrjjro3u9] {
    width: 40px;
    height: 40px;
    border: 3px solid var(--kore-border);
    border-top-color: var(--kore-primary);
    border-radius: 50%;
    animation: spin-b-9mrjjro3u9 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-9mrjjro3u9 {
    to { transform: rotate(360deg); }
}

/* Tabs */
.admin-tabs[b-9mrjjro3u9] {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--kore-border);
    padding-bottom: var(--space-md);
}

.tab-btn[b-9mrjjro3u9] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border: none;
    background: transparent;
    color: var(--kore-text-light);
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.tab-btn:hover[b-9mrjjro3u9] {
    background: var(--kore-bg-light);
    color: var(--kore-text);
}

.tab-btn.active[b-9mrjjro3u9] {
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-secondary) 100%);
    color: white;
}

.tab-btn .bi[b-9mrjjro3u9] {
    font-size: 1.1rem;
}

/* Users Section */
.users-grid[b-9mrjjro3u9] {
    display: grid;
    gap: var(--space-lg);
}

.user-card[b-9mrjjro3u9] {
    background: white;
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-fast);
}

.user-card:hover[b-9mrjjro3u9] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.user-card.locked[b-9mrjjro3u9] {
    border-color: var(--kore-accent-red);
    background: rgba(243, 91, 4, 0.02);
}

.user-header[b-9mrjjro3u9] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.user-avatar[b-9mrjjro3u9] {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-size-base);
}

.user-info[b-9mrjjro3u9] {
    flex: 1;
}

.user-info h3[b-9mrjjro3u9] {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--kore-text);
}

.user-id[b-9mrjjro3u9] {
    font-size: var(--font-size-sm);
    color: var(--kore-text-light);
    font-family: monospace;
}

.status-badge[b-9mrjjro3u9] {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.status-badge.confirmed[b-9mrjjro3u9] {
    background: rgba(38, 176, 80, 0.1);
    color: #26b050;
}

.status-badge.pending[b-9mrjjro3u9] {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.status-badge.locked[b-9mrjjro3u9] {
    background: rgba(243, 91, 4, 0.1);
    color: var(--kore-accent-red);
}

/* User Roles */
.user-roles[b-9mrjjro3u9] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--kore-border);
    border-bottom: 1px solid var(--kore-border);
}

.roles-label[b-9mrjjro3u9] {
    font-size: var(--font-size-sm);
    color: var(--kore-text-light);
    font-weight: 500;
}

.role-badge[b-9mrjjro3u9] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-secondary) 100%);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.remove-role[b-9mrjjro3u9] {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    margin-left: 2px;
    font-size: 1rem;
    line-height: 1;
    opacity: 0.7;
}

.remove-role:hover[b-9mrjjro3u9] {
    opacity: 1;
}

.no-roles[b-9mrjjro3u9] {
    font-size: var(--font-size-sm);
    color: var(--kore-text-light);
    font-style: italic;
}

/* User Actions */
.user-actions[b-9mrjjro3u9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.add-role-form[b-9mrjjro3u9] {
    display: flex;
    gap: var(--space-xs);
}

.role-select[b-9mrjjro3u9] {
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    color: var(--kore-text);
    background: white;
    min-width: 150px;
}

.btn-add-role[b-9mrjjro3u9] {
    padding: var(--space-xs) var(--space-md);
    background: var(--kore-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-add-role:hover:not(:disabled)[b-9mrjjro3u9] {
    background: var(--kore-primary-dark);
}

.btn-add-role:disabled[b-9mrjjro3u9] {
    opacity: 0.5;
    cursor: not-allowed;
}

.action-buttons[b-9mrjjro3u9] {
    display: flex;
    gap: var(--space-xs);
}

.btn-action[b-9mrjjro3u9] {
    width: 36px;
    height: 36px;
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-sm);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.btn-action .bi[b-9mrjjro3u9] {
    font-size: 1rem;
}

.btn-action.confirm[b-9mrjjro3u9] {
    color: #26b050;
}

.btn-action.confirm:hover[b-9mrjjro3u9] {
    background: rgba(38, 176, 80, 0.1);
    border-color: #26b050;
}

.btn-action.lock[b-9mrjjro3u9] {
    color: var(--kore-accent-red);
}

.btn-action.lock:hover[b-9mrjjro3u9] {
    background: rgba(243, 91, 4, 0.1);
    border-color: var(--kore-accent-red);
}

.btn-action.unlock[b-9mrjjro3u9] {
    color: #26b050;
}

.btn-action.unlock:hover[b-9mrjjro3u9] {
    background: rgba(38, 176, 80, 0.1);
    border-color: #26b050;
}

/* Roles Section */
.create-role-form[b-9mrjjro3u9] {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.role-input[b-9mrjjro3u9] {
    flex: 1;
    max-width: 300px;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
}

.role-input:focus[b-9mrjjro3u9] {
    outline: none;
    border-color: var(--kore-primary);
}

.btn-create-role[b-9mrjjro3u9] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-secondary) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-create-role:hover:not(:disabled)[b-9mrjjro3u9] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(21, 83, 115, 0.3);
}

.btn-create-role:disabled[b-9mrjjro3u9] {
    opacity: 0.5;
    cursor: not-allowed;
}

.roles-grid[b-9mrjjro3u9] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.role-card[b-9mrjjro3u9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.role-info[b-9mrjjro3u9] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.role-icon[b-9mrjjro3u9] {
    font-size: 1.5rem;
    color: var(--kore-primary);
}

.role-info h3[b-9mrjjro3u9] {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--kore-text);
}

.user-count[b-9mrjjro3u9] {
    font-size: var(--font-size-sm);
    color: var(--kore-text-light);
}

.btn-delete-role[b-9mrjjro3u9] {
    width: 36px;
    height: 36px;
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--kore-accent-red);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.btn-delete-role:hover[b-9mrjjro3u9] {
    background: rgba(243, 91, 4, 0.1);
    border-color: var(--kore-accent-red);
}

/* Icons */
.bi-people[b-9mrjjro3u9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1h8Zm-7.978-1A.261.261 0 0 1 7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002a.274.274 0 0 1-.014.002H7.022ZM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM6.936 9.28a5.88 5.88 0 0 0-1.23-.247A7.35 7.35 0 0 0 5 9c-4 0-5 3-5 4 0 .667.333 1 1 1h4.216A2.238 2.238 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816ZM4.92 10A5.493 5.493 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275ZM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
}

.bi-shield[b-9mrjjro3u9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61.44 61.44 0 0 0-2.837.856.481.481 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.725 10.725 0 0 0 2.287 2.233c.346.244.652.42.893.533.12.057.218.095.293.118a.55.55 0 0 0 .101.025.615.615 0 0 0 .1-.025c.076-.023.174-.061.294-.118.24-.113.547-.29.893-.533a10.726 10.726 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.775 11.775 0 0 1-2.517 2.453 7.159 7.159 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7.158 7.158 0 0 1-1.048-.625 11.777 11.777 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 62.456 62.456 0 0 1 5.072.56z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
}

.bi-check-circle[b-9mrjjro3u9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
}

.bi-lock[b-9mrjjro3u9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
}

.bi-unlock[b-9mrjjro3u9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M11 1a2 2 0 0 0-2 2v4a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h5V3a3 3 0 0 1 6 0v4a.5.5 0 0 1-1 0V3a2 2 0 0 0-2-2zM3 8a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1H3z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
}

.bi-trash[b-9mrjjro3u9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 5.5A.5.5 0 0 1 6 6v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5zm2.5 0a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5zm3 .5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V6z'/%3E%3Cpath fill-rule='evenodd' d='M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1v1zM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4H4.118zM2.5 3V2h11v1h-11z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
}

.bi-plus[b-9mrjjro3u9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
}

.bi-person-plus[b-9mrjjro3u9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M6 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H1s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C9.516 10.68 8.289 10 6 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3Cpath fill-rule='evenodd' d='M13.5 5a.5.5 0 0 1 .5.5V7h1.5a.5.5 0 0 1 0 1H14v1.5a.5.5 0 0 1-1 0V8h-1.5a.5.5 0 0 1 0-1H13V5.5a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
}

.bi-check-circle-fill[b-9mrjjro3u9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
}

.bi-exclamation-circle-fill[b-9mrjjro3u9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Toast Notification */
.toast-notification[b-9mrjjro3u9] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn-b-9mrjjro3u9 0.3s ease;
    z-index: 1000;
}

.toast-success[b-9mrjjro3u9] {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.toast-error[b-9mrjjro3u9] {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

@keyframes slideIn-b-9mrjjro3u9 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Create User Section */
.create-user-section[b-9mrjjro3u9] {
    max-width: 500px;
}

.create-user-form[b-9mrjjro3u9] {
    background: white;
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.create-user-form h2[b-9mrjjro3u9] {
    margin: 0 0 var(--space-lg) 0;
    font-size: var(--font-size-xl);
    color: var(--kore-text);
}

.form-group[b-9mrjjro3u9] {
    margin-bottom: var(--space-lg);
}

.form-group label[b-9mrjjro3u9] {
    display: block;
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--kore-text);
}

.form-input[b-9mrjjro3u9] {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.form-input:focus[b-9mrjjro3u9] {
    outline: none;
    border-color: var(--kore-primary);
    box-shadow: 0 0 0 3px rgba(21, 83, 115, 0.1);
}

.form-input.invalid[b-9mrjjro3u9] {
    border-color: var(--kore-accent-red);
}

.validation-message[b-9mrjjro3u9] {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--kore-accent-red);
}

.checkbox-group[b-9mrjjro3u9] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.checkbox-group label[b-9mrjjro3u9] {
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"][b-9mrjjro3u9] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--kore-primary);
}

.roles-checkboxes[b-9mrjjro3u9] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.role-checkbox[b-9mrjjro3u9] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.role-checkbox input[type="checkbox"][b-9mrjjro3u9] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--kore-primary);
}

.role-checkbox label[b-9mrjjro3u9] {
    margin-bottom: 0;
    font-size: var(--font-size-sm);
    cursor: pointer;
}

.form-actions[b-9mrjjro3u9] {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--kore-border);
}

.btn-create-user[b-9mrjjro3u9] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-secondary) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-create-user:hover:not(:disabled)[b-9mrjjro3u9] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(21, 83, 115, 0.3);
}

.btn-create-user:disabled[b-9mrjjro3u9] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spinner-small[b-9mrjjro3u9] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-9mrjjro3u9 1s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-header h1[b-9mrjjro3u9] {
        font-size: 1.75rem;
    }

    .user-actions[b-9mrjjro3u9] {
        flex-direction: column;
        align-items: flex-start;
    }

    .add-role-form[b-9mrjjro3u9] {
        width: 100%;
    }

    .role-select[b-9mrjjro3u9] {
        flex: 1;
    }

    .create-role-form[b-9mrjjro3u9] {
        flex-direction: column;
    }

    .role-input[b-9mrjjro3u9] {
        max-width: none;
    }

    .toast-notification[b-9mrjjro3u9] {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}
/* /Components/Pages/Cart.razor.rz.scp.css */
/* Bootstrap Icons - Cart Page */
.bi[b-6bledwiaqb] {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bi-cart-x[b-6bledwiaqb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666666' viewBox='0 0 16 16'%3E%3Cpath d='M.5 1a.5.5 0 0 0 0 1h1.11l.401 1.607 1.498 7.985A.5.5 0 0 0 4 12h1a2 2 0 1 0 0 4 2 2 0 0 0 0-4h7a2 2 0 1 0 0 4 2 2 0 0 0 0-4h1a.5.5 0 0 0 .491-.408l1.5-8A.5.5 0 0 0 14.5 3H2.89l-.405-1.621A.5.5 0 0 0 2 1H.5zM6 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0zM7.354 5.646 8.5 6.793l1.146-1.147a.5.5 0 0 1 .708.708L9.207 7.5l1.147 1.146a.5.5 0 0 1-.708.708L8.5 8.207 7.354 9.354a.5.5 0 1 1-.708-.708L7.793 7.5 6.646 6.354a.5.5 0 1 1 .708-.708z'/%3E%3C/svg%3E");
}

.bi-key-fill[b-6bledwiaqb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666666' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 11.5a3.5 3.5 0 1 1 3.163-5H14L15.5 8 14 9.5l-1-1-1 1-1-1-1 1-1-1-1 1H6.663a3.5 3.5 0 0 1-3.163 2zM2.5 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2z'/%3E%3C/svg%3E");
}

.bi-dash[b-6bledwiaqb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.bi-plus[b-6bledwiaqb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.bi-trash[b-6bledwiaqb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 5.5A.5.5 0 0 1 6 6v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5zm2.5 0a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5zm3 .5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V6z'/%3E%3Cpath fill-rule='evenodd' d='M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1v1zM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4H4.118zM2.5 3V2h11v1h-11z'/%3E%3C/svg%3E");
}

.bi-search[b-6bledwiaqb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
}

.bi-info-circle[b-6bledwiaqb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666666' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z'/%3E%3C/svg%3E");
}

.bi-send[b-6bledwiaqb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M15.854.146a.5.5 0 0 1 .11.54l-5.819 14.547a.75.75 0 0 1-1.329.124l-3.178-4.995L.643 7.184a.75.75 0 0 1 .124-1.33L15.314.037a.5.5 0 0 1 .54.11ZM6.636 10.07l2.761 4.338L14.13 2.576 6.636 10.07Zm6.787-8.201L1.591 6.602l4.339 2.76 7.494-7.493Z'/%3E%3C/svg%3E");
}

.bi-arrow-left[b-6bledwiaqb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z'/%3E%3C/svg%3E");
}

.bi-check-circle-fill[b-6bledwiaqb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
}

.bi-exclamation-circle-fill[b-6bledwiaqb] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");
}

.cart-page[b-6bledwiaqb] {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg);
}

.cart-header[b-6bledwiaqb] {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.cart-header h1[b-6bledwiaqb] {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-sm);
}

.cart-subtitle[b-6bledwiaqb] {
    color: var(--kore-text-light);
    font-size: var(--font-size-lg);
}

/* Empty Cart State */
.empty-cart[b-6bledwiaqb] {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--kore-bg-light);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--kore-border);
}


.empty-cart .bi-cart-x[b-6bledwiaqb] {
    font-size: 4rem;
    color: var(--kore-text-light);
    display: block;
    margin-bottom: var(--space-lg);
}

.empty-cart h2[b-6bledwiaqb] {
    color: var(--kore-text);
    margin-bottom: var(--space-sm);
}

.empty-cart p[b-6bledwiaqb] {
    color: var(--kore-text-light);
    margin-bottom: var(--space-lg);
}

.empty-cart .btn[b-6bledwiaqb] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Cart Content Layout */
.cart-content[b-6bledwiaqb] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 992px) {
    .cart-content[b-6bledwiaqb] {
        grid-template-columns: 1fr 350px;
        align-items: start;
    }
}

/* Cart Items */
.cart-items[b-6bledwiaqb] {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cart-item[b-6bledwiaqb] {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    grid-template-rows: auto auto;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: #fff;
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.cart-item:hover[b-6bledwiaqb] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .cart-item[b-6bledwiaqb] {
        grid-template-columns: 100px 1fr auto auto auto;
        grid-template-rows: 1fr;
        align-items: center;
    }
}

/* Item Image */
.item-image[b-6bledwiaqb] {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    background: var(--kore-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .item-image[b-6bledwiaqb] {
        width: 120px;
        height: 120px;
    }
}

.item-image img[b-6bledwiaqb] {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.image-placeholder[b-6bledwiaqb] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kore-text-light);
    font-size: 2rem;
}

/* Item Details */
.item-details[b-6bledwiaqb] {
    min-width: 0;
}

.item-name[b-6bledwiaqb] {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin: 0 0 var(--space-xs) 0;
    line-height: 1.3;
}

.item-name a[b-6bledwiaqb] {
    color: var(--kore-text);
    text-decoration: none;
}

.item-name a:hover[b-6bledwiaqb] {
    color: var(--kore-primary);
}

.item-sku[b-6bledwiaqb] {
    font-size: var(--font-size-sm);
    color: var(--kore-text-light);
    margin: 0 0 var(--space-xs) 0;
}

.item-price[b-6bledwiaqb] {
    font-size: var(--font-size-sm);
    color: var(--kore-primary);
    font-weight: 500;
    margin: 0;
}

/* Quantity Controls */
.item-quantity[b-6bledwiaqb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.quantity-label[b-6bledwiaqb] {
    font-size: var(--font-size-sm);
    color: var(--kore-text-light);
}

.quantity-controls[b-6bledwiaqb] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--kore-bg-light);
    border-radius: var(--radius-md);
    padding: var(--space-xs);
}

.btn-quantity[b-6bledwiaqb] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--kore-text);
}

.btn-quantity:hover:not(:disabled)[b-6bledwiaqb] {
    border-color: var(--kore-primary);
    color: var(--kore-primary);
}

.btn-quantity:disabled[b-6bledwiaqb] {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-value[b-6bledwiaqb] {
    min-width: 2rem;
    text-align: center;
    font-weight: 600;
}

/* Item Total */
.item-total[b-6bledwiaqb] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-xs);
}

.total-label[b-6bledwiaqb] {
    font-size: var(--font-size-sm);
    color: var(--kore-text-light);
}

.total-value[b-6bledwiaqb] {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--kore-primary);
}

/* Remove Button */
.btn-remove[b-6bledwiaqb] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    color: var(--kore-text-light);
    transition: all var(--transition-fast);
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
}

@media (min-width: 768px) {
    .btn-remove[b-6bledwiaqb] {
        grid-column: auto;
        grid-row: auto;
    }
}

.btn-remove:hover:not(:disabled)[b-6bledwiaqb] {
    border-color: var(--kore-accent-red);
    color: var(--kore-accent-red);
    background: rgba(243, 91, 4, 0.05);
}

.btn-remove:disabled[b-6bledwiaqb] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Cart Summary */
.cart-summary[b-6bledwiaqb] {
    background: #fff;
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: sticky;
    top: 5rem;
}

.cart-summary h2[b-6bledwiaqb] {
    font-size: var(--font-size-xl);
    margin: 0 0 var(--space-lg) 0;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--kore-border);
}

.summary-row[b-6bledwiaqb] {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    color: var(--kore-text);
}

.summary-total[b-6bledwiaqb] {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--kore-primary);
    padding-top: var(--space-md);
    margin-top: var(--space-sm);
    border-top: 2px solid var(--kore-primary);
}

.summary-note[b-6bledwiaqb] {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--kore-text-light);
    background: var(--kore-bg-light);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.summary-note .bi[b-6bledwiaqb] {
    flex-shrink: 0;
    margin-top: 2px;
}

.summary-actions[b-6bledwiaqb] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.summary-actions .btn[b-6bledwiaqb] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.w-100[b-6bledwiaqb] {
    width: 100%;
}

/* Toast Notification */
.toast-notification[b-6bledwiaqb] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    z-index: 1000;
    animation: slideIn-b-6bledwiaqb 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-success[b-6bledwiaqb] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.toast-error[b-6bledwiaqb] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

@keyframes slideIn-b-6bledwiaqb {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* /Components/Pages/ProductDetail.razor.rz.scp.css */
.product-detail-page[b-pf6okjw3fr] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.not-found[b-pf6okjw3fr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--kore-text-light);
}

.not-found .bi[b-pf6okjw3fr] {
    font-size: 4rem;
    color: var(--kore-primary);
    margin-bottom: 1rem;
}

.not-found h2[b-pf6okjw3fr] {
    margin: 0 0 0.5rem 0;
    color: var(--kore-text);
}

.not-found p[b-pf6okjw3fr] {
    margin: 0 0 1.5rem 0;
}

.product-detail-container[b-pf6okjw3fr] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-main[b-pf6okjw3fr] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--kore-border);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-image-section[b-pf6okjw3fr] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image[b-pf6okjw3fr] {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

.product-image-placeholder[b-pf6okjw3fr] {
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kore-bg-light);
    border-radius: 8px;
    color: var(--kore-text-light);
    font-size: 5rem;
}

.product-info-section[b-pf6okjw3fr] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-title[b-pf6okjw3fr] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kore-text);
    margin: 0;
    line-height: 1.3;
}

.product-meta[b-pf6okjw3fr] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-meta p[b-pf6okjw3fr] {
    margin: 0;
    font-size: 0.9rem;
    color: var(--kore-text-light);
}

.product-meta .label[b-pf6okjw3fr] {
    font-weight: 600;
    color: var(--kore-text);
}

.product-pricing[b-pf6okjw3fr] {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--kore-border);
    border-bottom: 1px solid var(--kore-border);
}

.current-price[b-pf6okjw3fr] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--kore-primary);
}

.msrp-price[b-pf6okjw3fr] {
    font-size: 1.1rem;
    color: var(--kore-text-light);
    text-decoration: line-through;
}

.product-stock[b-pf6okjw3fr] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.in-stock[b-pf6okjw3fr] {
    color: #2e7d32;
}

.out-of-stock[b-pf6okjw3fr] {
    color: #c62828;
}

.product-actions[b-pf6okjw3fr] {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.product-actions .btn[b-pf6okjw3fr] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.product-actions .btn-primary[b-pf6okjw3fr] {
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-primary-dark) 100%);
    border: none;
}

.product-actions .btn-primary:hover:not(:disabled)[b-pf6okjw3fr] {
    background: linear-gradient(135deg, var(--kore-primary-dark) 0%, var(--kore-primary) 100%);
}

.product-details-grid[b-pf6okjw3fr] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.detail-card[b-pf6okjw3fr] {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--kore-border);
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.detail-card.full-width[b-pf6okjw3fr] {
    grid-column: 1 / -1;
}

.detail-card h3[b-pf6okjw3fr] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--kore-text);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-list[b-pf6okjw3fr] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
}

.spec-item[b-pf6okjw3fr] {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--kore-border);
}

.spec-item:last-child[b-pf6okjw3fr] {
    border-bottom: none;
}

.spec-item dt[b-pf6okjw3fr] {
    font-weight: 600;
    color: var(--kore-text);
}

.spec-item dd[b-pf6okjw3fr] {
    margin: 0;
    color: var(--kore-text-light);
    text-align: right;
}

.compatible-vehicles[b-pf6okjw3fr] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vehicle-tag[b-pf6okjw3fr] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--kore-bg-light);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--kore-text);
}

.programming-notice[b-pf6okjw3fr] {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-color: #ffc107;
}

.programming-notice h3[b-pf6okjw3fr] {
    color: #f57c00;
}

.programming-notice p[b-pf6okjw3fr] {
    margin: 0;
    color: var(--kore-text);
}

.product-description[b-pf6okjw3fr] {
    margin: 0;
    color: var(--kore-text);
    line-height: 1.6;
}

/* Toast */
.toast-notification[b-pf6okjw3fr] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn-b-pf6okjw3fr 0.3s ease;
    z-index: 1000;
}

.toast-success[b-pf6okjw3fr] {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.toast-error[b-pf6okjw3fr] {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

@keyframes slideIn-b-pf6okjw3fr {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .product-main[b-pf6okjw3fr] {
        grid-template-columns: 1fr;
    }

    .product-details-grid[b-pf6okjw3fr] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-title[b-pf6okjw3fr] {
        font-size: 1.25rem;
    }

    .current-price[b-pf6okjw3fr] {
        font-size: 1.5rem;
    }

    .product-actions[b-pf6okjw3fr] {
        flex-direction: column;
    }
}
/* /Components/Pages/Search.razor.rz.scp.css */
.search-page[b-51neqw3dst] {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-lg);
}

.search-header[b-51neqw3dst] {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.search-header h1[b-51neqw3dst] {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-sm);
}

.search-subtitle[b-51neqw3dst] {
    color: var(--kore-text-light);
    font-size: var(--font-size-lg);
}

.search-section[b-51neqw3dst] {
    margin-bottom: 1rem;
}

/* Filter Section */
.filter-section[b-51neqw3dst] {
    background: #fff;
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.filter-header[b-51neqw3dst] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.filter-header h3[b-51neqw3dst] {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--kore-text);
}

/* Toggle Filters Button */
.btn-toggle-filters[b-51neqw3dst] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--kore-text);
}

.btn-toggle-filters:hover[b-51neqw3dst] {
    color: var(--kore-primary);
}

.btn-toggle-filters h3[b-51neqw3dst] {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.toggle-icon[b-51neqw3dst] {
    font-size: 0.7rem;
    color: var(--kore-text-light);
    transition: transform var(--transition-fast);
}

.btn-reset-filters[b-51neqw3dst] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: transparent;
    border: 1px solid var(--kore-border);
    border-radius: var(--radius-full);
    color: var(--kore-text-light);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-reset-filters:hover[b-51neqw3dst] {
    border-color: var(--kore-accent-red);
    color: var(--kore-accent-red);
    background: rgba(243, 91, 4, 0.05);
}

.btn-reset-filters .bi[b-51neqw3dst] {
    width: 0.75rem;
    height: 0.75rem;
}

.filter-summary[b-51neqw3dst] {
    margin-left: auto;
    font-size: var(--font-size-sm);
    color: var(--kore-text-light);
}

/* Filter Content Collapsible */
.filter-content[b-51neqw3dst] {
    overflow: hidden;
    max-height: 1000px;
    transition: max-height 0.3s ease-out, opacity 0.2s ease-out, padding 0.3s ease-out;
    opacity: 1;
}

.filter-section.collapsed .filter-content[b-51neqw3dst] {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.filter-section.collapsed[b-51neqw3dst] {
    padding-bottom: var(--space-md);
}

.filter-section.collapsed .filter-header[b-51neqw3dst] {
    margin-bottom: 0;
}

/* Pill Filter Styles */
.filter-pills-container[b-51neqw3dst] {
    display: flex;
        flex-direction: column;
        gap: var(--space-md);
    }

    .filter-pill-group[b-51neqw3dst] {
        display: flex;
        align-items: flex-start;
        gap: var(--space-sm);
        flex-wrap: wrap;
    }

    .filter-pill-label[b-51neqw3dst] {
        font-size: var(--font-size-sm);
        font-weight: 600;
        color: var(--kore-text-light);
        min-width: 100px;
        padding-top: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .filter-pill-label .label-icon[b-51neqw3dst] {
        font-size: 0.7rem;
        opacity: 0.7;
    }

    .filter-pills[b-51neqw3dst] {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-xs);
        flex: 1;
    }

    .filter-pill[b-51neqw3dst] {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 6px 14px;
        font-size: var(--font-size-sm);
        font-weight: 500;
        color: var(--kore-text);
        background: var(--kore-bg-light);
        border: 1px solid var(--kore-border);
        border-radius: var(--radius-full);
        cursor: pointer;
        transition: all var(--transition-fast);
        white-space: nowrap;
    }

    .filter-pill:hover[b-51neqw3dst] {
        border-color: var(--kore-primary);
        background: rgba(21, 83, 115, 0.05);
        color: var(--kore-primary);
    }

    .filter-pill.active[b-51neqw3dst] {
        background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-secondary) 100%);
        border-color: transparent;
        color: white;
    }

    .filter-pill.active:hover[b-51neqw3dst] {
        background: linear-gradient(135deg, var(--kore-primary-dark) 0%, var(--kore-primary) 100%);
        color: white;
    }

    /* Themed filter pills - consistent colors for all 5 attributes */

    /* Type filter - Orange */
    .filter-pill-group.type-filter .filter-pill[b-51neqw3dst] {
        background: rgba(234, 88, 12, 0.08);
        border-color: rgba(234, 88, 12, 0.2);
        color: #ea580c;
    }

    .filter-pill-group.type-filter .filter-pill:hover[b-51neqw3dst] {
        background: rgba(234, 88, 12, 0.15);
        border-color: #ea580c;
    }

    .filter-pill-group.type-filter .filter-pill.active[b-51neqw3dst] {
        background: #ea580c;
        border-color: #ea580c;
        color: white;
    }

    /* Buttons filter - Blue */
    .filter-pill-group.buttons-filter .filter-pill[b-51neqw3dst] {
        background: rgba(37, 99, 235, 0.08);
        border-color: rgba(37, 99, 235, 0.2);
        color: #2563eb;
    }

    .filter-pill-group.buttons-filter .filter-pill:hover[b-51neqw3dst] {
        background: rgba(37, 99, 235, 0.15);
        border-color: #2563eb;
    }

    .filter-pill-group.buttons-filter .filter-pill.active[b-51neqw3dst] {
        background: #2563eb;
        border-color: #2563eb;
        color: white;
    }

    /* Configuration filter - Pink */
    .filter-pill-group.config-filter .filter-pill[b-51neqw3dst] {
        background: rgba(192, 38, 211, 0.08);
        border-color: rgba(192, 38, 211, 0.2);
        color: #c026d3;
    }

    .filter-pill-group.config-filter .filter-pill:hover[b-51neqw3dst] {
        background: rgba(192, 38, 211, 0.15);
        border-color: #c026d3;
    }

    .filter-pill-group.config-filter .filter-pill.active[b-51neqw3dst] {
        background: #c026d3;
        border-color: #c026d3;
        color: white;
    }

    /* Frequency filter - Purple */
    .filter-pill-group.frequency-filter .filter-pill[b-51neqw3dst] {
        background: rgba(124, 58, 237, 0.08);
        border-color: rgba(124, 58, 237, 0.2);
        color: #7c3aed;
    }

    .filter-pill-group.frequency-filter .filter-pill:hover[b-51neqw3dst] {
        background: rgba(124, 58, 237, 0.15);
        border-color: #7c3aed;
    }

    .filter-pill-group.frequency-filter .filter-pill.active[b-51neqw3dst] {
        background: #7c3aed;
        border-color: #7c3aed;
        color: white;
    }

    .filter-pill-group.condition-filter .filter-pill[b-51neqw3dst] {
        background: rgba(5, 150, 105, 0.08);
        border-color: rgba(5, 150, 105, 0.2);
        color: #059669;
    }

    .filter-pill-group.condition-filter .filter-pill:hover[b-51neqw3dst] {
        background: rgba(5, 150, 105, 0.15);
        border-color: #059669;
    }

    .filter-pill-group.condition-filter .filter-pill.active[b-51neqw3dst] {
        background: #059669;
        border-color: #059669;
        color: white;
    }

    .pill-icon[b-51neqw3dst] {
        font-size: 0.65rem;
        opacity: 0.8;
    }

    .pill-close[b-51neqw3dst] {
    font-size: 1rem;
    line-height: 1;
    margin-left: 2px;
    opacity: 0.8;
}

.filter-pill.active .pill-close:hover[b-51neqw3dst] {
    opacity: 1;
}

/* Filter Icons */
.bi-x-circle[b-51neqw3dst] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 640px) {
    .filter-pill-group[b-51neqw3dst] {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-pill-label[b-51neqw3dst] {
        min-width: auto;
        padding-top: 0;
    }
}

.results-section[b-51neqw3dst] {
    min-height: 300px;
}

/* Product Category Groups */
.product-category-group[b-51neqw3dst] {
    margin-bottom: var(--space-2xl);
}

.product-category-group:last-child[b-51neqw3dst] {
    margin-bottom: 0;
}

.category-title[b-51neqw3dst] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: 0 0 var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-primary-dark) 100%);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(21, 83, 115, 0.2);
}

.category-name[b-51neqw3dst] {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.category-count[b-51neqw3dst] {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--kore-primary);
    background: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    margin-left: auto;
}

/* Product Type Groups (sub-level) */
.product-type-group[b-51neqw3dst] {
    margin-bottom: var(--space-xl);
    padding-left: var(--space-md);
    border-left: 3px solid var(--kore-secondary);
}

.product-type-group:last-child[b-51neqw3dst] {
    margin-bottom: 0;
}

.type-title[b-51neqw3dst] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin: 0 0 var(--space-md) 0;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, rgba(118, 120, 237, 0.1) 0%, rgba(118, 120, 237, 0.05) 100%);
    border-radius: var(--radius-sm);
}

.type-name[b-51neqw3dst] {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--kore-secondary);
    text-transform: uppercase;
}

.type-count[b-51neqw3dst] {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: white;
    background: var(--kore-secondary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: auto;
}

/* Product Spec Groups (sub-sub-level) */
.product-spec-group[b-51neqw3dst] {
    margin-bottom: var(--space-xl);
    padding: var(--space-md);
    background: var(--kore-bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--kore-border);
}

.product-spec-group:last-child[b-51neqw3dst] {
    margin-bottom: 0;
}

.spec-title[b-51neqw3dst] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: 0 0 var(--space-md) 0;
    padding: var(--space-sm) var(--space-md);
    background: white;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--kore-accent-orange);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.spec-badges[b-51neqw3dst] {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.spec-tag[b-51neqw3dst] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.spec-icon[b-51neqw3dst] {
    font-size: 0.8rem;
}

.buttons-tag[b-51neqw3dst] {
    background: #2563eb;
    color: white;
}

.frequency-tag[b-51neqw3dst] {
    background: #7c3aed;
    color: white;
}

.spec-count[b-51neqw3dst] {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--kore-text-light);
    margin-left: auto;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

/* No Results State */
.no-results[b-51neqw3dst] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--kore-text-light);
    background: var(--kore-bg-light);
    border-radius: var(--radius-lg);
}

.no-results .bi[b-51neqw3dst] {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

.no-results h3[b-51neqw3dst] {
    margin: 0 0 var(--space-sm) 0;
    color: var(--kore-text);
}

.no-results p[b-51neqw3dst] {
    margin: 0;
}

.search-prompt[b-51neqw3dst] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--kore-text-light);
    background: var(--kore-bg-light);
    border-radius: 12px;
}

.search-prompt .bi[b-51neqw3dst] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-prompt p[b-51neqw3dst] {
    margin: 0;
    font-size: 1.1rem;
}

/* Toast Notification */
.toast-notification[b-51neqw3dst] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn-b-51neqw3dst 0.3s ease;
    z-index: 1000;
}

.toast-success[b-51neqw3dst] {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.toast-error[b-51neqw3dst] {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.toast-notification .bi[b-51neqw3dst] {
    font-size: 1.25rem;
}

@keyframes slideIn-b-51neqw3dst {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .search-header h1[b-51neqw3dst] {
        font-size: 1.75rem;
    }

    .search-subtitle[b-51neqw3dst] {
        font-size: 1rem;
    }

    .toast-notification[b-51neqw3dst] {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}
/* /Components/Shared/Products/ProductCard.razor.rz.scp.css */
.product-card[b-lmbqjol8wt] {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--kore-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.product-card:hover[b-lmbqjol8wt] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 52, 139, 0.12);
}

.product-image-container[b-lmbqjol8wt] {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--kore-bg-light);
    overflow: hidden;
}

.product-image-container[b-lmbqjol8wt]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: grey;
    opacity: 0.1;
    pointer-events: none;
    z-index: 2;
}

.product-image[b-lmbqjol8wt] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image[b-lmbqjol8wt] {
    transform: scale(1.05);
}

.product-image-placeholder[b-lmbqjol8wt] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--kore-bg-light) 0%, #e8e8e8 100%);
    color: var(--kore-text-light);
    font-size: 3rem;
}

/* Logo Watermark Overlay */
.logo-watermark[b-lmbqjol8wt] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.logo-watermark img[b-lmbqjol8wt] {
    width: 100%;
    max-width: 480px;
    height: auto;
}

.category-badge[b-lmbqjol8wt] {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-secondary) 100%);
    color: white;
}

/* Condition Overlay on Image */
.condition-overlay[b-lmbqjol8wt] {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.condition-overlay.condition-new[b-lmbqjol8wt] {
    background: #059669;
    color: white;
}

.condition-overlay.condition-refurb-a[b-lmbqjol8wt] {
    background: #2563eb;
    color: white;
}

.condition-overlay.condition-refurb-b[b-lmbqjol8wt] {
    background: #7c3aed;
    color: white;
}

.condition-overlay.condition-refurb-c[b-lmbqjol8wt] {
    background: #db2777;
    color: white;
}

.condition-overlay.condition-default[b-lmbqjol8wt] {
    background: #6b7280;
    color: white;
}

/* Brand Overlay on Image */
.brand-overlay[b-lmbqjol8wt] {
    position: absolute;
    top: 2rem;
    left: 0.5rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    background: #1e40af;
    color: white;
}

/* SmartBox Logo Button */
.smartbox-logo-btn[b-lmbqjol8wt] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 8px;
    padding: 0.25rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10;
}

.smartbox-logo-btn:hover[b-lmbqjol8wt] {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.smartbox-logo[b-lmbqjol8wt] {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* Product Spec Badges Overlay */
.product-specs-overlay[b-lmbqjol8wt] {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.spec-badge[b-lmbqjol8wt] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.spec-icon[b-lmbqjol8wt] {
    font-size: 0.6rem;
    opacity: 0.8;
}

.buttons-badge[b-lmbqjol8wt] {
    background: rgba(37, 99, 235, 0.9);
    color: white;
}

.frequency-badge[b-lmbqjol8wt] {
    background: rgba(124, 58, 237, 0.9);
    color: white;
}

.product-content[b-lmbqjol8wt] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
}

.product-name[b-lmbqjol8wt] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--kore-text);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-details[b-lmbqjol8wt] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-details p[b-lmbqjol8wt] {
    margin: 0;
    font-size: 0.8rem;
    color: var(--kore-text-light);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-details .label[b-lmbqjol8wt] {
    font-weight: 600;
    color: var(--kore-text);
}

.product-badges[b-lmbqjol8wt] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.condition-badge[b-lmbqjol8wt] {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.condition-new[b-lmbqjol8wt] {
    background: #e8f5e9;
    color: #2e7d32;
}

.condition-refurb-a[b-lmbqjol8wt] {
    background: #e3f2fd;
    color: #1565c0;
}

.condition-refurb-b[b-lmbqjol8wt] {
    background: #fff3e0;
    color: #ef6c00;
}

.condition-refurb-c[b-lmbqjol8wt] {
    background: #fce4ec;
    color: #c62828;
}

.condition-default[b-lmbqjol8wt] {
    background: var(--kore-bg-light);
    color: var(--kore-text-light);
}

.product-footer[b-lmbqjol8wt] {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--kore-border);
}

.product-actions[b-lmbqjol8wt] {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn[b-lmbqjol8wt] {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
}

.product-actions .btn-primary[b-lmbqjol8wt] {
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-primary-dark) 100%);
    border: none;
}

.product-actions .btn-primary:hover[b-lmbqjol8wt] {
    background: linear-gradient(135deg, var(--kore-primary-dark) 0%, var(--kore-primary) 100%);
}

.product-actions .btn-outline-secondary[b-lmbqjol8wt] {
    border-color: var(--kore-border);
    color: var(--kore-text);
}

.product-actions .btn-outline-secondary:hover[b-lmbqjol8wt] {
    background: var(--kore-bg-light);
    border-color: var(--kore-primary);
    color: var(--kore-primary);
}
/* /Components/Shared/Products/ProductGrid.razor.rz.scp.css */
.product-grid-container[b-zp0we4jc7n] {
    width: 100%;
}

.product-grid-header[b-zp0we4jc7n] {
    margin-bottom: 1rem;
}

.results-count[b-zp0we4jc7n] {
    color: var(--kore-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.product-grid[b-zp0we4jc7n] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .product-grid[b-zp0we4jc7n] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid[b-zp0we4jc7n] {
        grid-template-columns: 1fr;
    }
}

.no-results[b-zp0we4jc7n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--kore-text-light);
}

.no-results .bi[b-zp0we4jc7n] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results p[b-zp0we4jc7n] {
    margin: 0;
    font-size: 1.1rem;
}

.no-results-hint[b-zp0we4jc7n] {
    font-size: 0.9rem !important;
    margin-top: 0.5rem !important;
    opacity: 0.8;
}
/* /Components/Shared/Products/SmartBoxModal.razor.rz.scp.css */
.smartbox-modal-overlay[b-r9pwpd8w18] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.smartbox-modal[b-r9pwpd8w18] {
    background: #fff;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: smartboxModalIn-b-r9pwpd8w18 0.3s ease;
}

@keyframes smartboxModalIn-b-r9pwpd8w18 {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.smartbox-modal-header[b-r9pwpd8w18] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.smartbox-modal-header h2[b-r9pwpd8w18] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.smartbox-header-logo[b-r9pwpd8w18] {
    height: 32px;
    width: auto;
}

.smartbox-close-btn[b-r9pwpd8w18] {
    background: #f3f4f6;
    border: none;
    color: #6b7280;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1;
}

.smartbox-close-btn:hover[b-r9pwpd8w18] {
    background: #e5e7eb;
    color: #1f2937;
}

.smartbox-modal-body[b-r9pwpd8w18] {
    flex: 1;
    overflow-y: auto;
}

/* Tabs */
.smartbox-tabs[b-r9pwpd8w18] {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    background: #f9fafb;
    padding: 0 1rem;
    overflow-x: auto;
}

.smartbox-tab[b-r9pwpd8w18] {
    padding: 0.875rem 1.25rem;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    white-space: nowrap;
}

.smartbox-tab:hover[b-r9pwpd8w18] {
    color: #1a365d;
}

.smartbox-tab.active[b-r9pwpd8w18] {
    color: #1a365d;
    border-bottom-color: #1a365d;
    background: white;
}

/* Tab Content */
.smartbox-tab-content[b-r9pwpd8w18] {
    padding: 1.5rem;
}

/* Info Section */
.smartbox-info-grid[b-r9pwpd8w18] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.smartbox-info-item[b-r9pwpd8w18] {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.info-label[b-r9pwpd8w18] {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.info-value[b-r9pwpd8w18] {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

/* Note */
.smartbox-note[b-r9pwpd8w18] {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #0369a1;
}

.smartbox-note.important[b-r9pwpd8w18] {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.smartbox-note strong[b-r9pwpd8w18] {
    margin-right: 0.5rem;
}

.note-list[b-r9pwpd8w18] {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
    list-style-type: disc;
}

.note-list li[b-r9pwpd8w18] {
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.note-list li:last-child[b-r9pwpd8w18] {
    margin-bottom: 0;
}

.important-badge[b-r9pwpd8w18] {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Difficulty Section */
.difficulty-title[b-r9pwpd8w18] {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    text-align: center;
}

.smartbox-gauges[b-r9pwpd8w18] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.gauge-item[b-r9pwpd8w18] {
    text-align: center;
}

.gauge-visual[b-r9pwpd8w18] {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.gauge-meter[b-r9pwpd8w18] {
    width: 100%;
    max-width: 120px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gauge-fill[b-r9pwpd8w18] {
    height: 100%;
    border-radius: 12px;
    transition: width 0.5s ease;
}

.gauge-value[b-r9pwpd8w18] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 0.875rem;
    color: #1f2937;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.gauge-na[b-r9pwpd8w18] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #9ca3af;
}

.gauge-label[b-r9pwpd8w18] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.gauge-time[b-r9pwpd8w18] {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Difficulty Legend */
.difficulty-legend[b-r9pwpd8w18] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.legend-item[b-r9pwpd8w18] {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.legend-item.easy[b-r9pwpd8w18] {
    background: #dcfce7;
    color: #166534;
}

.legend-item.moderate[b-r9pwpd8w18] {
    background: #fef9c3;
    color: #854d0e;
}

.legend-item.intermediate[b-r9pwpd8w18] {
    background: #fef3c7;
    color: #92400e;
}

.legend-item.difficult[b-r9pwpd8w18] {
    background: #ffedd5;
    color: #c2410c;
}

.legend-item.expert[b-r9pwpd8w18] {
    background: #fee2e2;
    color: #b91c1c;
}

/* Video Section */
.smartbox-video-section[b-r9pwpd8w18] {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.smartbox-video-section iframe[b-r9pwpd8w18] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 640px) {
    .smartbox-modal[b-r9pwpd8w18] {
        max-height: 95vh;
        margin: 0.5rem;
    }

    .smartbox-modal-header[b-r9pwpd8w18] {
        padding: 1rem;
    }

    .smartbox-modal-header h2[b-r9pwpd8w18] {
        font-size: 1.1rem;
    }

    .smartbox-tabs[b-r9pwpd8w18] {
        padding: 0 0.5rem;
    }

    .smartbox-tab[b-r9pwpd8w18] {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .smartbox-tab-content[b-r9pwpd8w18] {
        padding: 1rem;
    }

    .smartbox-gauges[b-r9pwpd8w18] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .smartbox-info-grid[b-r9pwpd8w18] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/UI/DemoWalkthrough.razor.rz.scp.css */
/* Demo Walkthrough Styles */

/* Bootstrap Icons */
.bi[b-odjanxf3rq] {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bi-x-lg[b-odjanxf3rq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z'/%3E%3C/svg%3E");
}

.bi-chevron-left[b-odjanxf3rq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.bi-chevron-right[b-odjanxf3rq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.bi-check-lg[b-odjanxf3rq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/%3E%3C/svg%3E");
}

.bi-lightbulb[b-odjanxf3rq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M2 6a6 6 0 1 1 10.174 4.31c-.203.196-.359.4-.453.619l-.762 1.769A.5.5 0 0 1 10.5 13a.5.5 0 0 1 0 1 .5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1 0-1 .5.5 0 0 1 0-1 .5.5 0 0 1-.46-.302l-.761-1.77a1.964 1.964 0 0 0-.453-.618A5.984 5.984 0 0 1 2 6zm6-5a5 5 0 0 0-3.479 8.592c.263.254.514.564.676.941L5.83 12h4.342l.632-1.467c.162-.377.413-.687.676-.941A5 5 0 0 0 8 1z'/%3E%3C/svg%3E");
}

.bi-arrow-counterclockwise[b-odjanxf3rq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 3a5 5 0 1 1-4.546 2.914.5.5 0 0 0-.908-.417A6 6 0 1 0 8 2v1z'/%3E%3Cpath d='M8 4.466V.534a.25.25 0 0 0-.41-.192L5.23 2.308a.25.25 0 0 0 0 .384l2.36 1.966A.25.25 0 0 0 8 4.466z'/%3E%3C/svg%3E");
}

.bi-book[b-odjanxf3rq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M1 2.828c.885-.37 2.154-.769 3.388-.893 1.33-.134 2.458.063 3.112.752v9.746c-.935-.53-2.12-.603-3.213-.493-1.18.12-2.37.461-3.287.811V2.828zm7.5-.141c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492V2.687zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783z'/%3E%3C/svg%3E");
}

.demo-overlay[b-odjanxf3rq] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    pointer-events: auto;
}

.demo-spotlight[b-odjanxf3rq] {
    position: fixed;
    background: transparent;
    border-radius: 8px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    pointer-events: none;
}

.demo-popup[b-odjanxf3rq] {
    position: fixed;
    width: 360px;
    background: var(--kore-bg, #ffffff);
    border: 1px solid var(--kore-border, #e5e7eb);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    overflow: hidden;
    animation: demoPopupIn-b-odjanxf3rq 0.3s ease;
}

@keyframes demoPopupIn-b-odjanxf3rq {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.demo-popup-header[b-odjanxf3rq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--kore-primary, #4f46e5);
    color: white;
}

.demo-step-indicator[b-odjanxf3rq] {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.demo-close-btn[b-odjanxf3rq] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.demo-close-btn:hover[b-odjanxf3rq] {
    background: rgba(255, 255, 255, 0.3);
}

.demo-popup-content[b-odjanxf3rq] {
    padding: 20px;
}

.demo-popup-content h3[b-odjanxf3rq] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--kore-text, #1f2937);
    margin: 0 0 8px 0;
}

.demo-popup-content p[b-odjanxf3rq] {
    font-size: 0.9rem;
    color: var(--kore-text-light, #6b7280);
    line-height: 1.6;
    margin: 0;
}

.demo-popup-footer[b-odjanxf3rq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--kore-bg-light, #f9fafb);
    border-top: 1px solid var(--kore-border, #e5e7eb);
}

.demo-progress[b-odjanxf3rq] {
    display: flex;
    gap: 6px;
}

.progress-dot[b-odjanxf3rq] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kore-border, #e5e7eb);
    transition: all 0.2s;
}

.progress-dot.active[b-odjanxf3rq] {
    background: var(--kore-primary, #4f46e5);
    transform: scale(1.2);
}

.progress-dot.completed[b-odjanxf3rq] {
    background: var(--kore-primary, #4f46e5);
    opacity: 0.5;
}

.demo-actions[b-odjanxf3rq] {
    display: flex;
    gap: 8px;
}

.demo-actions .btn[b-odjanxf3rq] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    padding: 6px 12px;
}

/* Position indicators (visual cue) */
.demo-popup.top[b-odjanxf3rq]::before,
.demo-popup.bottom[b-odjanxf3rq]::before,
.demo-popup.left[b-odjanxf3rq]::before,
.demo-popup.right[b-odjanxf3rq]::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--kore-bg, #ffffff);
    border: 1px solid var(--kore-border, #e5e7eb);
    transform: rotate(45deg);
}

.demo-popup.top[b-odjanxf3rq]::before {
    bottom: -7px;
    left: 50%;
    margin-left: -6px;
    border-top: none;
    border-left: none;
}

.demo-popup.bottom[b-odjanxf3rq]::before {
    top: -7px;
    left: 50%;
    margin-left: -6px;
    border-bottom: none;
    border-right: none;
}

.demo-popup.left[b-odjanxf3rq]::before {
    right: -7px;
    top: 50%;
    margin-top: -6px;
    border-bottom: none;
    border-left: none;
}

.demo-popup.right[b-odjanxf3rq]::before {
    left: -7px;
    top: 50%;
    margin-top: -6px;
    border-top: none;
    border-right: none;
}

/* Responsive */
@media (max-width: 480px) {
    .demo-popup[b-odjanxf3rq] {
        width: calc(100vw - 32px);
        left: 16px !important;
    }
}

/* Demo Sidebar Styles */
.demo-sidebar[b-odjanxf3rq] {
    position: fixed;
    top: 80px;
    right: 0;
    height: calc(100vh - 100px);
    background: var(--kore-bg, #ffffff);
    border-left: 1px solid var(--kore-border, #e5e7eb);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: width 0.3s ease;
    display: flex;
    flex-direction: column;
}

.demo-sidebar.expanded[b-odjanxf3rq] {
    width: 320px;
}

.demo-sidebar.collapsed[b-odjanxf3rq] {
    width: 48px;
}

.demo-sidebar-toggle[b-odjanxf3rq] {
    position: absolute;
    left: -16px;
    top: 20px;
    width: 32px;
    height: 32px;
    background: var(--kore-primary, #4f46e5);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
    z-index: 1;
}

.demo-sidebar-toggle:hover[b-odjanxf3rq] {
    transform: scale(1.1);
    background: var(--kore-primary-dark, #3730a3);
}

.demo-sidebar-header[b-odjanxf3rq] {
    padding: 16px;
    border-bottom: 1px solid var(--kore-border, #e5e7eb);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-sidebar-header h4[b-odjanxf3rq] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--kore-text, #1f2937);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-sidebar-header h4 .bi[b-odjanxf3rq] {
    color: var(--kore-accent, #f7b801);
}

.demo-sidebar-header .btn[b-odjanxf3rq] {
    font-size: 0.8rem;
}

.demo-sidebar-content[b-odjanxf3rq] {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.demo-sidebar-step[b-odjanxf3rq] {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 8px;
    border: 1px solid transparent;
}

.demo-sidebar-step:hover[b-odjanxf3rq] {
    background: var(--kore-bg-light, #f9fafb);
}

.demo-sidebar-step.active[b-odjanxf3rq] {
    background: rgba(79, 70, 229, 0.08);
    border-color: var(--kore-primary, #4f46e5);
}

.demo-sidebar-step .step-number[b-odjanxf3rq] {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--kore-primary, #4f46e5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.demo-sidebar-step .step-info[b-odjanxf3rq] {
    flex: 1;
}

.demo-sidebar-step .step-info h5[b-odjanxf3rq] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--kore-text, #1f2937);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.demo-sidebar-step .step-info p[b-odjanxf3rq] {
    font-size: 0.8rem;
    color: var(--kore-text-light, #6b7280);
    line-height: 1.5;
    margin: 8px 0 0 0;
}

.demo-sidebar-collapsed-content[b-odjanxf3rq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 8px;
}

.demo-sidebar-collapsed-content .bi[b-odjanxf3rq] {
    font-size: 1.25rem;
    color: var(--kore-primary, #4f46e5);
}

.demo-sidebar-collapsed-content .collapsed-text[b-odjanxf3rq] {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--kore-text-light, #6b7280);
}

/* Responsive sidebar */
@media (max-width: 768px) {
    .demo-sidebar.expanded[b-odjanxf3rq] {
        width: 280px;
    }

    .demo-sidebar[b-odjanxf3rq] {
        top: 60px;
        height: calc(100vh - 80px);
    }
}
/* /Components/Shared/UI/LoadingSpinner.razor.rz.scp.css */
.loading-spinner-container[b-wf7j6wvvh3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
}

.loading-spinner[b-wf7j6wvvh3] {
    width: 48px;
    height: 48px;
    border: 4px solid var(--kore-border);
    border-top-color: var(--kore-primary);
    border-radius: 50%;
    animation: spin-b-wf7j6wvvh3 1s linear infinite;
}

@keyframes spin-b-wf7j6wvvh3 {
    to {
        transform: rotate(360deg);
    }
}

.loading-message[b-wf7j6wvvh3] {
    color: var(--kore-text-light);
    font-size: 0.9rem;
    margin: 0;
}
/* /Components/Shared/VehicleSearch/VehicleSelector.razor.rz.scp.css */
.vehicle-selector[b-u250pv6yom] {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--kore-border);
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.selector-row[b-u250pv6yom] {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.selector-field[b-u250pv6yom] {
    flex: 1;
    min-width: 150px;
}

.selector-field label[b-u250pv6yom] {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--kore-text);
    margin-bottom: 0.5rem;
}

.selector-field .form-select[b-u250pv6yom] {
    width: 100%;
    padding: 0.625rem 2rem 0.625rem 0.75rem;
    font-size: 0.95rem;
    border: 1px solid var(--kore-border);
    border-radius: 8px;
    background-color: white;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.selector-field .form-select:focus[b-u250pv6yom] {
    border-color: var(--kore-primary);
    box-shadow: 0 0 0 3px rgba(61, 52, 139, 0.15);
    outline: none;
}

.selector-field .form-select:disabled[b-u250pv6yom] {
    background-color: var(--kore-bg-light);
    cursor: not-allowed;
}

.selector-actions[b-u250pv6yom] {
    min-width: 130px;
}

.selector-actions .btn[b-u250pv6yom] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--kore-primary) 0%, var(--kore-primary-dark) 100%);
    border: none;
    color: white;
    transition: all 0.2s ease;
}

.selector-actions .btn:hover:not(:disabled)[b-u250pv6yom] {
    background: linear-gradient(135deg, var(--kore-primary-dark) 0%, var(--kore-primary) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 52, 139, 0.3);
}

.selector-actions .btn:disabled[b-u250pv6yom] {
    opacity: 0.6;
    cursor: not-allowed;
}

.selected-vehicle[b-u250pv6yom] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(61, 52, 139, 0.08) 0%, rgba(118, 120, 237, 0.08) 100%);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--kore-primary);
}

.selected-vehicle .bi[b-u250pv6yom] {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .selector-row[b-u250pv6yom] {
        flex-direction: column;
    }

    .selector-field[b-u250pv6yom],
    .selector-actions[b-u250pv6yom] {
        width: 100%;
        min-width: unset;
    }
}
