@font-face {
    font-family: "Bosch Sans";
    src: url("../fonts/boschsans-regular-webfont.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bosch Sans";
    src: url("../fonts/boschsans-light-webfont.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bosch Sans";
    src: url("../fonts/boschsans-bold-webfont.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/fontawesome-webfont.woff2") format("woff2"),
         url("../fonts/fontawesome-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

:root {
    --bosch-red: #e20015;
    --ink: #1b1b1b;
    --muted: #555f66;
    --line: #d7dce0;
    --bg: #ffffff;
    --panel: #ffffff;
    --blue: #007bc0;
    --green: #18837e;
    --dark: #202428;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Bosch Sans", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.45;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.topbar {
    height: 8px;
    background: url("../../supergraphic.svg") center / cover no-repeat;
}

.shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: #fff;
    border-bottom: 1px solid #d4d8dc;
}

.header .shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0;
    color: #111827;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    text-decoration: none;
}

a.brand img {
    display: block;
    width: 128px;
    max-height: 34px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.nav a {
    color: #2b2f33;
    font-size: 15px;
}

.nav .nav-logout {
    min-height: 38px;
    padding: 0 14px 0 12px;
    border: 1px solid #c5cbd0;
    background: #fff;
    color: #1f2933;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.nav .nav-logout::before {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' x2='9' y1='12' y2='12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav .nav-logout:hover,
.nav .nav-logout:focus {
    border-color: #b00020;
    color: #b00020;
}

.main {
    padding: 0 0 56px;
}

.hero {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 28px;
    align-items: center;
    padding: 32px 0;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.08;
    margin: 0 0 14px;
}

.lead {
    color: var(--muted);
    font-size: 18px;
    margin: 0 0 22px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    min-height: 46px;
    color: #6f777d;
    font-size: 13px;
}

.breadcrumb a {
    color: #6f777d;
}

.page-intro {
    padding: 38px 0 34px;
    text-align: center;
}

.page-intro .eyebrow {
    color: #667078;
    margin: 0 0 8px;
}

.page-intro h1 {
    margin: 0 0 14px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
}

.page-intro p:last-child {
    max-width: 780px;
    margin: 0 auto;
    color: #4f5961;
    font-size: 18px;
}

.portal-intro h2 {
    max-width: 900px;
    margin: 0 auto 18px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
}

.campaigns-section {
    padding: 10px 0 0;
}

.campaigns-section > h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 28px;
}

.intro-copy {
    max-width: 820px;
    margin: 0 auto 28px;
    color: #3f474e;
    text-align: center;
}

.registration-layout {
    padding: 30px 0 62px;
}

.registration-head {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.registration-content {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
    gap: 52px;
    align-items: start;
}

.registration-head .eyebrow {
    color: #667078;
    margin: 0 0 8px;
}

.registration-head h1 {
    margin: 0 0 12px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
}

.registration-head h2 {
    margin: 0 0 18px;
    font-size: 21px;
    font-weight: 400;
    color: #374047;
}

.registration-text {
    color: #3f474e;
    margin-bottom: 26px;
    font-size: 16px;
}

.registration-terms {
    margin: -8px 0 28px;
}

.registration-notice {
    margin: 0 0 22px;
}

small.field-help {
    font-size: 11px;
}
.registration-form {
    padding: 0;
    border: 0;
}

.registration-visual {
    position: sticky;
    top: 28px;
    min-height: 620px;
    background: #eef2f4;
    overflow: hidden;
}

.registration-visual > img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 662px;
    object-fit: cover;
}

.registration-visual .campaign-placeholder {
    min-height: 662px;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 400;
    line-height: 1.4;
}

.checkbox-label-inline {
    align-items: center;
    font-size: 16px;
}

.form-section-title {
    border-top: 1px solid #d7dce0;
    padding-top: 28px;
    margin-top: 14px;
}

.form-section-title h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
}

.warranty-section-title {
    border-top: 0;
    padding-top: 0;
    margin-top: 8px;
}

.warranty-section-title h2 {
    font-size: 24px;
    line-height: 1.2;
}

.autocomplete {
    position: relative;
}

.autocomplete-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 280px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #9aa7b0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.autocomplete-option {
    width: 100%;
    min-height: 52px;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px 14px;
    border: 0;
    border-bottom: 1px solid #e3e7ea;
    background: #fff;
    color: #1b1b1b;
    text-align: left;
    font-weight: 400;
}

.autocomplete-option:hover,
.autocomplete-option:focus {
    background: #eef7fc;
    outline: 0;
}

.autocomplete-option strong {
    font-weight: 700;
}

.autocomplete-option span,
.autocomplete-empty {
    color: #4f5961;
}

.autocomplete-empty {
    padding: 14px;
}

.image-preview {
    margin-top: 10px;
    width: min(420px, 100%);
    min-height: 140px;
    border: 1px solid var(--line);
    background: #f3f5f6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-preview[hidden] {
    display: none !important;
}

.image-preview img {
    display: block;
    width: 100%;
    max-height: 260px;
    object-fit: cover;
}

.image-preview img[hidden] {
    display: none;
}

.image-preview-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.82);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    z-index: 2;
}

.image-preview-remove:hover,
.image-preview-remove:focus-visible {
    background: rgba(11, 17, 25, 0.94);
}

.upload-dropzone {
    position: relative;
}

.upload-dropzone.has-file .upload-dropzone-input,
.upload-dropzone.has-file .upload-dropzone-surface {
    display: none;
}

.upload-dropzone-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-dropzone-surface {
    min-height: 184px;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 24px;
    border: 1px dashed #96a3ad;
    background: linear-gradient(180deg, #fafbfc 0%, #f2f5f7 100%);
    color: #2b3238;
    text-align: center;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.upload-dropzone-surface strong {
    font-size: 18px;
    font-weight: 700;
}

.upload-dropzone-surface span {
    color: #556068;
}

.upload-dropzone-surface small {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #d8dde1;
    color: #3b454d;
    font-size: 13px;
}

.upload-dropzone:hover .upload-dropzone-surface,
.upload-dropzone:focus-within .upload-dropzone-surface,
.upload-dropzone.is-dragover .upload-dropzone-surface {
    border-color: var(--blue);
    background: #eef7fc;
    box-shadow: 0 0 0 3px rgba(0, 123, 192, 0.08);
}

.upload-dropzone-image .upload-dropzone-surface {
    min-height: 148px;
}

.upload-dropzone-selected {
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid #d5dde4;
    background: #f8fbfd;
}

.upload-dropzone-selected[hidden] {
    display: none !important;
}

.upload-dropzone-file {
    min-width: 0;
}

.upload-dropzone-file strong {
    display: block;
    color: #1f2933;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upload-dropzone-remove {
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    border: 1px solid #c6d0d8;
    background: #fff;
    color: #41505d;
    font-size: 24px;
    line-height: 1;
}

.upload-dropzone-remove:hover,
.upload-dropzone-remove:focus-visible {
    border-color: #9aa7b0;
    color: #12202c;
}

.segmented-tabs,
.vib-import-tabs {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border: 1px solid #d9e1e7;
    background: #f3f6f8;
    border-radius: 999px;
}

.segmented-tab,
.vib-tab {
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #53606b;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.segmented-tab:hover,
.segmented-tab:focus-visible,
.vib-tab:hover,
.vib-tab:focus-visible {
    color: #1f2933;
    outline: 0;
}

.segmented-tab.is-active,
.vib-tab.is-active {
    background: #fff;
    color: #0e1720;
    box-shadow: 0 8px 18px rgba(12, 32, 52, 0.08);
}

.campaign-terms-tabs {
    margin-bottom: 14px;
}

.band {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
}

.thanks-card {
    margin-top: 40px;
}

.card h2,
.card h3 {
    margin-top: 0;
}

.meta {
    color: var(--muted);
    font-size: 14px;
}

.campaign-list {
    display: grid;
    gap: 0;
    border-top: 1px solid #e1e5e8;
}

.campaign-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 360px;
    border-bottom: 1px solid #e1e5e8;
    background: #fff;
}

.campaign-row.is-reversed .campaign-media {
    order: 2;
}.page-intro h1 {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.campaign-media {
    display: block;
    min-height: 360px;
    background: #edf0f2;
    overflow: hidden;
}

.campaign-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: contain;
}

.campaign-placeholder {
    min-height: 360px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
 
}

.campaign-placeholder img {
    width: 210px;
    height: auto;
    min-height: 0;
    object-fit: contain;
}

.campaign-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 58px;
}

.campaign-copy h2 {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.campaign-copy h3 {
    margin: 0 0 18px;
    font-size: 19px;
    font-weight: 400;
    color: #374047;
}

.campaign-copy p {
    color: #3f474e;
}

.campaign-description {
    color: #3f474e;
    max-height: 150px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.campaign-description p {
    margin: 0 0 10px;
}

.campaign-description p:last-child,
.campaign-description ul:last-child,
.campaign-description ol:last-child {
    margin-bottom: 0;
}

.campaign-description ul,
.campaign-description ol {
    margin: 0 0 10px;
    padding-left: 20px;
}

.bosch-links {
    display: grid;
    gap: 9px;
    margin-top: 12px;
}

.bosch-links a::before {
    content: "›";
    margin-right: 8px;
    color: var(--blue);
    font-weight: 700;
}

.button,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 0;
    border: 1px solid var(--blue);
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.button.secondary {
    background: #fff;
    color: var(--blue);
}

.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 24px;
}

.auth-form {
    max-width: 520px;
    margin: 60px auto 0;
}

.auth-help {
    color: #52606a;
    margin: -4px 0 20px;
}

.auth-resend {
    max-width: 520px;
    margin: 14px auto 0;
    text-align: center;
}

.auth-form .actions .button,
.auth-form .actions button {
    font-size: 14px;
    line-height: 1.2;
}

.code-input {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .18em;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-step {
    display: none;
    grid-column: 1 / -1;
    min-width: 0;
    border: 0;
    margin: 0;
    padding: 0;
}

.form-step.is-active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-step legend {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    padding: 0;
    font-family: var(--font-bold);
    font-size: 24px;
    line-height: 1.2;
}

.form-step-actions,
.warranty-submit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 6px;
}

.filter-grid {
    display: grid;
    grid-template-columns: 220px minmax(260px, 1fr) 160px;
    gap: 18px;
    align-items: end;
}

.product-filter .filter-grid {
    grid-template-columns: minmax(260px, 1fr) 160px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    font-weight: 700;
    font-size: 14px;
}

.required-mark {
    color: #e20015;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid #bcccdc;
    border-radius: 0;
    padding: 9px 11px;
    font: inherit;
    background: #fff;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: #e20015;
    box-shadow: inset 0 -2px 0 #e20015;
}

.field-error {
    color: #e20015;
    font-size: 12px;
    line-height: 1.35;
    margin-top: -2px;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
    min-height: 0;
}

.file-field {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 42px;
}

.file-field-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.file-field-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 16px;
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.file-field-input:focus + .file-field-button {
    outline: 2px solid #003b6a;
    outline-offset: 2px;
}

.file-field-name {
    min-width: 0;
    color: #3f474e;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

textarea {
    min-height: 120px;
}

.notice {
    border-radius: 0;
    padding: 12px 14px;
    margin: 0 0 18px;
    background: #e6f4ff;
    border: 1px solid #a5d8ff;
}

.notice.error {
    background: #fff1f2;
    border-color: #fecdd3;
}
.table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    text-align: left;
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

th {
    background: #f8fafc;
    font-size: 13px;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    font-size: 12px;
    font-weight: 700;
}

.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.footer {
    background: #fff;
    color: #1f2933;
    padding: 0;
}

.footer-social {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 38px;
}

.footer-social a {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    margin: 0;
    font-weight: 700;
    line-height: 1;
}

.fa {
    display: inline-block;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-youtube-play::before {
    content: "\f16a";
}

.fa-facebook::before {
    content: "\f09a";
}

.fa-instagram::before {
    content: "\f16d";
}

.footer-social .fa {
    font-size: 22px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 90px;
    padding-top: 20px;
    padding-bottom: 44px;
}

.footer h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 26px;
    color: #000;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.4;
}

.footer a {
    color: #000;
    text-decoration: none;
}

.footer a:hover {
    color: #007bc0;
    text-decoration: underline;
}

.footer-rule {
    border: 0;
    border-top: 1px solid #000;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
    min-height: 76px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fff;
    color: #000;
    font-size: 12px;
}

.footer-legal a {
    display: inline;
    margin: 0;
    color: #000;
}

.footer-legal a:hover {
    color: #007bc0;
}

.admin-body {
    background: #f4f6f8;
}

.admin-header {
    box-shadow: 0 1px 0 rgba(16, 24, 40, 0.06);
}

.admin-header .shell {
    max-width: 1240px;
}

.admin-main {
    padding: 34px 0 58px;
}

.admin-shell {
    max-width: 1240px;
}

.admin-page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 22px;
}

.admin-page-head h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
}

.admin-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.admin-page-head .actions .button,
.admin-page-head .actions button {
    font-size: 14px;
    line-height: 1.2;
}

.admin-page-head.compact {
    margin-top: 0;
    margin-bottom: 14px;
}

.campaign-delete-action {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.registration-delete-action {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.registration-edit-actions {
    margin-top: 50px;
}

.admin-page-head.compact h2 {
    margin: 0;
}

.admin-kicker {
    margin: 0 0 6px;
    color: #69737c;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.metric-card,
.admin-panel {
    background: #fff;
    border: 1px solid #e1e6ea;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.metric-card {
    padding: 18px;
}

.metric-card span {
    display: block;
    color: #65717b;
    font-size: 13px;
    margin-bottom: 8px;
}

.metric-card strong {
    display: block;
    font-size: 30px;
    line-height: 1;
}

.admin-panel {
    padding: 18px;
    margin-bottom: 20px;
}

.admin-filter {
    padding-bottom: 16px;
    border-bottom: 1px solid #edf0f2;
    margin-bottom: 6px;
}

.admin-table {
    border: 1px solid #e1e7ed;
    border-radius: 8px;
    background: #f6f8fa;
    padding: 8px;
}

.admin-table table {
    font-size: 12px;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.admin-table th {
    background: transparent;
    border: 0;
    color: #66737f;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 11px;
    font-weight: 700;
    padding: 0 14px 6px;
}

.admin-table td {
    background: #fff;
    border-top: 1px solid #e3e9ef;
    border-bottom: 1px solid #e3e9ef;
    padding: 14px;
}

.admin-table td:first-child {
    border-left: 1px solid #e3e9ef;
    border-radius: 7px 0 0 7px;
}

.admin-table td:last-child {
    border-right: 1px solid #e3e9ef;
    border-radius: 0 7px 7px 0;
}

.admin-table tbody tr:nth-child(even) td {
    background: #fbfcfd;
}

.admin-table tbody tr:hover td,
.admin-table tbody tr:nth-child(even):hover td {
    background: #eef7ff;
    border-color: #c7ddeb;
}

.admin-table tbody tr[data-row-link],
.admin-table tbody tr[data-row-checkbox] {
    cursor: pointer;
}

.admin-table .table-id strong,
.admin-table .table-code strong {
    color: #111827;
    font-weight: 700;
}

.admin-table .table-title {
    color: #1f2933;
    font-weight: 700;
}

.admin-table .table-date,
.admin-table .table-email {
    color: #5f6b75;
    white-space: nowrap;
}

.admin-table .table-code {
    color: #25313b;
    font-family: "BoschSans", Arial, sans-serif;
    letter-spacing: .01em;
    white-space: nowrap;
}

.admin-table .table-check {
    width: 58px;
    text-align: center;
}

.admin-table .table-actions {
    width: 120px;
    text-align: right;
    white-space: nowrap;
}

.admin-table .table-media {
    width: 100px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    color: #52606a;
    font-size: 14px;
}

.upload-dropzone-surface span {
    font-size: 11px;
    font-weight: 100;
}
.pagination-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination a,
.pagination .is-active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    padding: 0 11px;
    border: 1px solid #c8d2da;
    background: #fff;
    color: #007bc0;
    font-weight: 700;
}

.pagination .is-active {
    border-color: #007bc0;
    background: #007bc0;
    color: #fff;
}

.pagination-single {
    justify-content: flex-end;
}

.small-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid #9ecae4;
    background: #fff;
    color: #007bc0;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 123, 192, 0.08);
}

.small-action:hover {
    background: #007bc0;
    border-color: #007bc0;
    color: #fff;
}

.type-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.type-badge.promotion {
    background: #e8f4fd;
    color: #005691;
}

.type-badge.warranty {
    background: #e7f5ef;
    color: #0b6b4b;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: #eef2f6;
    color: #3b4856;
}

.status-badge.active {
    background: #e7f5ef;
    color: #0b6b4b;
}

.status-badge.draft {
    background: #fff7df;
    color: #846200;
}

.status-badge.archived {
    background: #edf0f2;
    color: #52606a;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: #eef2f6;
    color: #3b4856;
}

.role-badge.super_admin {
    background: #e8f4fd;
    color: #005691;
}

.role-badge.admin {
    background: #e7f5ef;
    color: #0b6b4b;
}

.empty-state {
    text-align: center;
    color: #69737c;
    padding: 30px !important;
}
.button.secondary {
    font-size: 14px;
}
.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.registration-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
    padding: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.summary-item {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border: 1px solid #e1e8ef;
    background: #fff;
    border-radius: 8px;
}

.summary-item span {
    color: #69737c;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.summary-item strong {
    color: #111827;
    font-size: 18px;
    line-height: 1.3;
}

.vib-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(280px, 0.75fr);
    gap: 18px;
    align-items: start;
}

.vib-main {
    min-width: 0;
}

.vib-sidebar {
    position: sticky;
    top: 10px;
    padding: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.vib-sidebar .vib-import-tabs {
    margin-bottom: 16px;
}

.vib-import-tabs {}

.vib-sidebar .field-help {
    display: block;
    margin-top: 8px;
    color: #667078;
}

.vib-sidebar .vib-import-form textarea {
    min-height: 220px;
}

.detail-card h2,
.import-panel h2 {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.2;
}

.detail-card-wide {
    grid-column: 1 / -1;
}

.detail-card dl {
    margin: 0;
    display: grid;
    gap: 12px;
}

.detail-card dl > div {
    padding: 12px 14px;
    border: 1px solid #e7edf2;
    background: #fafcfd;
    border-radius: 6px;
}

.detail-card dt {
    color: #69737c;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.detail-card dd {
    margin: 3px 0 0;
    color: #111827;
    font-weight: 700;
    overflow-wrap: anywhere;
}
.vib-tab {

        font-size: 12px;


}
.file-list {
    display: grid;
    gap: 10px;
}

.file-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    border: 1px solid #e1e6ea;
    border-radius: 8px;
    padding: 14px 16px;
    color: #1b1b1b;
    background: #fbfcfd;
}

.file-item:hover {
    border-color: #c7ddeb;
    background: #eef7ff;
}

.file-meta {
    display: grid;
    gap: 4px;
}

.notice.muted {
    background: #f5f7fa;
    border-color: #dbe2ea;
    color: #4b5563;
}

.file-item small {
    color: #69737c;
}

.history-list {
    display: grid;
    gap: 14px;
}

.history-item {
    border: 1px solid #e5ebf0;
    border-radius: 8px;
    background: #fafcfd;
    padding: 16px;
}

.history-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.history-head strong {
    color: #111827;
}

.history-head span {
    color: #69737c;
    font-size: 13px;
}

.history-changes {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.history-changes li {
    display: grid;
    grid-template-columns: minmax(140px, auto) minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 10px;
    align-items: baseline;
    padding: 10px 12px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #e9eef3;
}

.history-arrow {
    color: #7c8793;
    font-weight: 700;
}

.thumb {
    width: 78px;
    height: 50px;
    object-fit: cover;
    display: block;
    background: #edf0f2;
    border: 1px solid #d8e0e7;
    border-radius: 6px;
}

.thumb.placeholder {
    border: 1px dashed #b8c2ca;
    background: repeating-linear-gradient(
        -45deg,
        #f4f7f9,
        #f4f7f9 8px,
        #e9eef2 8px,
        #e9eef2 16px
    );
}

.import-panel form {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 360px) auto;
    gap: 18px;
    align-items: end;
}

.import-panel form.vib-import-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
}

.vib-import-form button {
    justify-self: start;
}

.vib-table {
    min-width: 0 !important;
}

.vib-table th:first-child,
.vib-table td:first-child {
    width: 52px;
    text-align: center;
}

.vib-table th:last-child,
.vib-table td:last-child {
    width: 92px;
    text-align: right;
}

.product-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #edf0f2;
    margin-bottom: 12px;
}

.product-toolbar .product-filter {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
    padding: 0;
    border: 0;
    margin: 0;
}

.product-toolbar .product-filter .field {
    min-width: 280px;
}

.bulk-actions {
    margin-bottom: 12px;
}

.danger-inline {
    display: flex;
    gap: 10px;
    align-items: center;
}

.danger-inline input {
    width: 170px;
}

.button.danger {
    background: #b00020;
    border-color: #b00020;
    color: #fff;
}

.link-danger {
    border: 0;
    background: transparent;
    color: #b00020;
    min-height: 0;
    padding: 0;
    font-weight: 700;
}

.link-button {
    border: 0;
    background: transparent;
    color: var(--blue);
    min-height: 0;
    padding: 0;
    font-weight: 700;
}

.rich-editor {
    border: 1px solid #bcccdc;
    background: #fff;
}

.rich-toolbar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 8px;
    border-bottom: 1px solid #d7dce0;
    background: #f7f9fb;
}

.rich-toolbar button {
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid #c8d2da;
    background: #fff;
    color: #1b1b1b;
}

.rich-surface {
    min-height: 170px;
    padding: 12px;
    outline: 0;
}

.rich-surface:focus {
    box-shadow: inset 0 0 0 2px #007bc0;
}

@media (max-width: 720px) {
    .header .shell,
    .hero {
        display: block;
    }

    .header-left {
        justify-content: space-between;
        gap: 14px;
        padding-top: 14px;
    }

    .nav {
        margin-top: 12px;
        gap: 14px;
        padding-bottom: 14px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .page-intro h1 {
        font-size: 32px;
    }

    .campaign-row,
    .campaign-row.is-reversed {
        grid-template-columns: 1fr;
    }

    .campaign-row.is-reversed .campaign-media {
        order: 0;
    }

    .campaign-media,
    .campaign-media img,
    .campaign-placeholder {
        min-height: 230px;
    }

    .campaign-copy {
        padding: 30px 0;
    }

    .registration-layout {
        padding-top: 18px;
    }

    .registration-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .registration-head {
        margin-bottom: 28px;
        text-align: left;
    }

    .registration-head h1 {
        font-size: 32px;
    }

    .registration-visual {
        position: static;
        min-height: 260px;
        order: -1;
    }

    .registration-visual > img,
    .registration-visual .campaign-placeholder {
        min-height: 260px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 30px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-step.is-active {
        grid-template-columns: 1fr;
    }

    .form-step legend {
        font-size: 22px;
    }

    .form-step-actions,
    .warranty-submit {
        justify-content: stretch;
    }

    .form-step-actions button,
    .form-step-actions .button,
    .warranty-submit button {
        width: 100%;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .admin-page-head,
    .import-panel form {
        display: block;
    }

    .admin-page-head .button,
    .admin-page-head form {
        margin-top: 14px;
    }

    .pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .product-toolbar,
    .product-toolbar .product-filter {
        align-items: stretch;
        flex-direction: column;
    }

    .product-toolbar .product-filter .field {
        min-width: 0;
    }

    .vib-layout {
        grid-template-columns: 1fr;
    }

    .vib-sidebar {
        position: static;
        top: auto;
    }

    .metric-grid,
    .registration-summary,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .file-item {
        grid-template-columns: 1fr;
    }

    .history-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .history-changes li {
        grid-template-columns: 1fr;
    }
}
