:root {
  --gp-font--myriad-pro: "Myriad Pro";
  --brand: #000000;
  --brand-2: #38598d;
  --brand-soft: #edf3fb;
  --accent: #E30613;

  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #ffffff;
  --text: #000000;
  --muted: #3b3f49;
  --line: #e3e8f2;

  --primary: #e30613;
  --primary2: #ff414d;
  --primary-hover: #243b61;

  --button-secondary: #243b61;
  --button-small: #5f6063;
  --pending-border: #c0c0c0;
  
  --pending-bg: #f8f7f7;

  --danger-bg: #fff1f1;
  --danger-text: #b42318;
  --danger-line: #f7caca;

  --success-bg: #edfdf3;
  --success-text: #027a48;
  --success-line: #b7ebc6;

  --shadow: 0 14px 36px rgba(18, 33, 61, 0.08);
  --radius: 0px;
}
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  /* font-family: var(--gp-font--myriad-pro); */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  font-weight: 400;
  background:
    radial-gradient(circle at top left, #eef3fb 0, transparent 30%),
    linear-gradient(180deg, #f9fbff 0%, var(--bg) 100%);
}

@font-face {
  font-family: "Thermo-bug Header";
  src:
    url("./fonts/spaehn_header.woff2") format("woff2"),
    url("./fonts/spaehn_header.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "myriad-pro-regular";
  src:
    url("./fonts/spaehn_text_regular.woff2") format("woff2"),
    url("./fonts/spaehn_text_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "thermobug-text-semibold";
  src:
    url("./fonts/spaehn_text_semibold.woff2") format("woff2"),
    url("./fonts/spaehn_text_semibold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-display: auto;
    font-family: "Myriad Pro";
    font-style: normal;
    font-weight: 600;
    src: url("./fonts/myriad/MyriadPro-Regular.woff2") format('woff2');
}



/* @font-face {
	font-display: auto;
	font-family: "myriad-pro-regular";
	font-style: normal;
	font-weight: 600;
	src: url('./fonts/myriad/MyriadPro-Regular.woff2') format('woff2');
} */

@font-face {
	font-display: auto;
	font-family: "myriad-pro-semibold";
	font-style: normal;
	font-weight: 500;
	src: url('./fonts/myriad/MyriadPro-Semibold.woff2') format('woff2');
}

@font-face {
	font-display: auto;
	font-family: "myriad-pro-bold";
	font-style: normal;
	font-weight: 700;
  letter-spacing: 0.01em;
	src: url('./fonts/myriad/MyriadPro-Bold.woff2') format('woff2');
}



h1 {
  font-family: "myriad-pro-bold", sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
}
p.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-family: "myriad-pro-semibold", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-button {
  display: inline-block; /* or block */
  appearance: none;
  border: 0;
  border-radius: 0px;
  padding: 11px 16px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  margin-top: 8px; /* space from paragraph above */
}

.login-button:hover,
.login-button:focus {
  background: #fff;
  color: var(--primary);   /* red text */
  text-decoration: none;
  outline: 2px solid var(--primary); /* 2px red outline */
  outline-offset: -2px;               /* optional spacing */
}

header.page-header {

  /* border-bottom: 1px solid var(--line); */
  padding: 18px 20px;
}

body.page {
  min-height: 100vh;
}



.brand-hero {
  background:
    linear-gradient(100deg, #fff, rgb(255, 255, 255)),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  color: #fff;
  padding: 0px;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.08);
}

.brand-hero__inner {
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand-logo {
  flex: 0 0 auto;
  width: min(260px, 100%);
  border-radius: 20px;
  padding: 18px 20px;

}

.brand-logo svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80px;
  
}

.brand-copy {
  flex: 1 1 320px;
  min-width: 280px;
}

.brand-kicker {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.brand-copy p {
  margin: 12px 0 0;
  max-width: 700px;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.65;
}


.shell {
  width: min(1200px, calc(100vw - 48px));
  /* height: 84vh; */
   /* overflow-y: auto; */
   min-height: 83vh;
  margin: 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(227, 232, 242, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.card h3 {
  font-family: "myriad-pro-semibold", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 16px 0 8px;
  font-size: 22px;
  font-weight: 400;
  color: var(--brand);
}



.note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.error {
  display: none;
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid var(--danger-line);
  background: var(--danger-bg);
  color: var(--danger-text);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.error:not(:empty) {
  display: block;
}

.success {
  display: none;
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid var(--success-line);
  background: var(--success-bg);
  color: var(--success-text);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.success:not(:empty) {
  display: block;
}

.divider-text,.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 28px 0;
  color: #a9a9a9;
  font-size: 13px;
}

.divider-text::before,
.divider-text::after {
  content: "";
  flex: 1;
  border-top: 1px solid #e4e8ee;
}

.divider-text span {
  padding: 0 16px;
}


button,
a.button {
  margin: 8px 0px;
  display: inline-block;
  appearance: none;
  border: 0;
  border-radius: 0;
  padding: 11px 16px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}


button:hover,
button:focus {
  background: #fff;
  color: var(--primary);   /* red text */
  text-decoration: none;
  outline: 2px solid var(--primary); /* 2px red outline */
  outline-offset: -2px;               /* optional spacing */
}

button:active,
a.button:active {
  transform: translateY(0);
}

button:disabled,
a.button.is-disabled {
  background: #d9dde3;
  color: #7a8699;
  border-color: #d9dde3;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

button:disabled:hover,
button:disabled:focus,
a.button.is-disabled:hover,
a.button.is-disabled:focus {
  background: #d9dde3;
  color: #7a8699;
  outline: none;
  text-decoration: none;
  transform: none;
}

.button-secondary {
  background: #fff;
  color: var(--button-secondary);
  border: 2px solid var(--button-secondary);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus {
  background: var(--button-secondary);
  color: #fff;
  outline: 2px solid var(--button-secondary);
  outline-offset: -2px;
  text-decoration: none;
}

.button-big {
  background: #fff;
  color: var(--button-small);
  border: 1px solid var(--button-small);
  box-shadow: none;
  outline-offset: -2px;
  padding: 14px 16px;
}

.button-big:hover,
.button-big:focus {
  background: var(--button-small);
  color: #fff;
  outline: 2px solid var(--button-small);
  outline-offset: -2px;
  text-decoration: none;
}




a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size:14px;
  
}

a:hover {
  text-decoration: underline;
}

.a-secondary {
  margin: 8px 0px;
  display: inline-block;
  appearance: none;
  border: 0;
  border-radius: 0;
  padding: 11px 16px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}

.a-button{
  padding: 10px 16px;
  font-size: 14px;
  font-family: ui-sans-serif, sans-serif;
  text-decoration: none;
}

.a-button:focus, .a-button:hover {
  background: #fff;
  color: var(--primary);   /* red text */
  text-decoration: none;
  outline: 2px solid var(--primary); /* 2px red outline */
  outline-offset: -2px;               /* optional spacing */
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.pagination-info {
  font-size: 14px;
  color: #243b61;
}

table {
  width: 100%;
  border-collapse: collapse !important;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}

thead th {
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

th,
td {
  padding: 14px 16px !important;
  border-bottom: 1px solid var(--line) !important;
  vertical-align: middle;
}

tbody tr:hover {
  background: #f9fbff;
}

tbody tr:last-child td {
  border-bottom: 0 !important;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid #d7deea;
  border-radius: 0px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(45, 72, 116, 0.8);
  box-shadow: 0 0 0 4px rgba(45, 72, 116, 0.12);
}



.row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.button-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.field {
  /* flex: 1 1 220px; */
  min-width: 100px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--brand);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.badge.refunded {
  background: var(--danger-bg);
  color: var(--danger-text);
  border: 1px solid var(--danger-line);
}

.badge.pending {
  background: var(--pending-bg);
  color: var(--button-small);
  border: 1px solid var(--pending-border);
}

.badge.paid {
  background: var(--success-bg);
  color: var(--success-text);
  border: 1px solid var(--success-line);
}

#beton-orders > .card {
  overflow: hidden;
  margin-top: -18px;
}

@media (max-width: 760px) {
  .brand-hero {
    padding: 24px 14px 30px;
  }

  .brand-logo {
    width: 50%;
    padding: 14px 16px;
  }

    .shell {
    /* padding: 0px 5px 0px; */
    /* margin: 5px; */
    /* width: min(1200px, calc(100vw - 48px)); */
    margin: 0 auto;
    width: 94%;
  }

.success {
  margin: 0 20px 10px;
}

  .card {
    padding: 18px;
    /* border-radius: 16px; */
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  th,
  td {
    padding: 12px !important;
  }

  .a-button {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  button,
  a.button {
    width: 100%;
    
  }

  .field {
    min-width: 100%;
  }
}

/* Checkboxes */


.addon-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 3px 4px 3px 9px;
  border: 1px solid #d9e0ea;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  min-width: 220px;
}

.addon-option:hover {
  border-color: #243b61;
  box-shadow: 0 6px 18px rgba(36, 59, 97, 0.08);
}
.addon-radio{
  width: 15px;
  height: 15px;
  margin: 0;
  pointer-events: none;
}

.addon-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}

.addon-checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #243b61;
  border-radius: 6px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.addon-label-text {
  font-size: 14px;
  line-height: 1.3;
  color: #243b61;
}

.addon-checkbox:checked + .addon-checkmark {
  background: #243b61;
  border-color: #243b61;
}

.addon-checkbox:checked + .addon-checkmark::after {
  content: "✓";
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.addon-checkbox:focus-visible + .addon-checkmark {
  outline: 2px solid #243b61;
  outline-offset: 2px;
}

.addon-checkbox:checked ~ .addon-label-text {
  font-weight: 600;
}

/* Row-slots */

.row-slots {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.row-slots .field {
  flex: 1;
}

.row-slots .field-button {
  flex: 0 0 auto;

}

.load-slots-btn {
  position: relative;
  top: 6px;
}
.btn-search {
  position: relative;
  top: 8px;
}

.row-slots .field-button button {
  white-space: nowrap;
}

.field-button {
  display: flex;
  align-items: flex-end;
  padding-top: 6px;
}

/* ADMIN CHECKBOXES */

.admin-checkbox-option {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border: 1px solid #d9e0ea;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  max-width: 260px;
  box-sizing: border-box;
}

.admin-checkbox-option:hover {
  border-color: #243b61;
  box-shadow: 0 6px 18px rgba(36, 59, 97, 0.08);
}

.admin-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}

.admin-checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex: 0 0 20px;
  border: 2px solid #243b61;
  border-radius: 6px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  line-height: 1;
  vertical-align: middle;
}

.admin-checkbox-text {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.3;
  color: #243b61;
  margin-left: 4px;
}

.admin-checkbox:checked + .admin-checkmark {
  background: #243b61;
  border-color: #243b61;
}

.admin-checkbox:checked + .admin-checkmark::after {
  content: "✓";
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.admin-checkbox:focus-visible + .admin-checkmark {
  outline: 2px solid #243b61;
  outline-offset: 2px;
}

.admin-checkbox:checked ~ .admin-checkbox-text {
  font-weight: 600;
}

.admin-checkbox-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

/* ADMIN TABS */

.admin-tabs {
  display: flex;
  gap: 0;
  margin: 20px 0 0;
  border-bottom: 1px solid #d9d9d9;
}

.admin-tab {
  appearance: none;
  border: 1px solid #d9d9d9;
  border-bottom: none;
  background: #f3f4f6;
  color: #555;
  padding: 10px 18px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  line-height: 1;
  position: relative;
  top: 1px;
  transition: background 0.15s ease, color 0.15s ease;
}

.admin-tab:first-child {
  border-top-left-radius: 10px;
}

.admin-tab:last-child {
  border-top-right-radius: 10px;
}

.admin-tab + .admin-tab {
  margin-left: -1px;
}

.admin-tab:hover {
  background: #e9ebef;
  color: #222;
}

.admin-tab.active {
  background: #fff;
  color: #111;
  z-index: 2;
}

.admin-tab-panel {
  border: 0px solid #d9d9d9;
  background: #fff;
  padding: 12px 0px;
}

.admin-tab-panel[style*="display:none"] {
  display: none !important;
}

@media (max-width: 760px) {
    .admin-tabs {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .admin-tab {
        display: inline-block;
        border-radius: 10px 10px 0 0;
        margin-right: 4px;
        max-width: fit-content;
    }
}

/* ADMIN MODAL MESSAGE */

.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.admin-modal {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: min(760px, calc(100vw - 32px));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.admin-modal--wide {
  width: min(760px, calc(100vw - 32px));
}

.admin-modal-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-mail-textarea {
  width: 100%;
  min-height: 240px;
  resize: vertical;
  font-family: inherit;
}

.admin-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/** ADMIN USERS TABLE */

.admin-users-table {
  width: 100%;
  border-collapse: collapse;
  font-family: ui-sans-serif, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.35;
  background: #fff;
}

.admin-users-table thead th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #dcdcdc;
  font-family: "thermobug-text-semibold", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: #555;
  white-space: nowrap;
}

.admin-users-table tbody td {
  padding: 9px 12px;
  border-bottom: 1px solid #eeeeee;
  vertical-align: middle;
  color: #222;
}

.admin-users-table tbody tr:hover {
  background: #fafafa;
}

.admin-users-table__email {
  font-family: "thermobug-text-semibold", Arial, sans-serif;
}

.admin-users-table__role,
.admin-users-table__bool {
  white-space: nowrap;
}

.admin-users-table__userid {
  font-size: 11px;
  color: #777;
  word-break: break-all;
}
.admin-orders-table__date, .admin-orders-table__customer, .admin-orders-table__delivered-info,
.admin-orders-table__invoice{
  font-size: 12px;
}

.admin-users-table__actions {
  white-space: nowrap;
  display: flex;
  gap: 4px;
  align-items: center;
}


.admin-table-btn {
  appearance: none;
  border: 1px solid #d7d7d7;
  background: #fff;
  color: #222;
  padding: 6px 10px;
  border-radius: 8px;
  font-family: "thermobug-text-semibold", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.admin-table-btn:hover {
  background: #f5f5f5;
}

.admin-table-btn--secondary {
  background: #fff;
}

.admin-table-btn--danger {
  color: #8a1f1f;
  border-color: #e1bcbc;
  background: #fff;
}

.admin-table-btn--danger:hover {
  background: #fff5f5;
}

.admin-orders-table__amount {
  white-space: nowrap;
  min-width: 110px;
}

/* Responsive adjustments for scanned */

.page-header {
  padding: 16px 0 20px;
}

.page-subtitle {
  margin: 0px 0 0;
  color: var(--muted);
  line-height: 1.5;
  padding-bottom:10px;
}

#app {
  margin-top: 16px;
}

.invoice-card {
  width: 100%;
}

.invoice-details {
  display: grid;
  gap: 0;
}

.invoice-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.invoice-label {
  font-family: "thermobug-text-semibold", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  color: var(--brand);
}

.invoice-value {
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.actions .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.status-box {
  margin-top: 16px;
  padding: 0px 0px;
  line-height: 1.5;
}

@media (max-width: 760px) {


    .page-header h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
  }

}

/* Therm  products*/
.product-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.product-date-input {
  width: 100%;
  max-width: 220px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 20px;
}

.shop-product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-product-image {
  width:85%;
  min-height: 150px;
  object-fit: cover;
  background: #fff;
  display: block;
  margin: 0 auto;
}

/* .product-offer-card--primary { */
  /* border: 2px solid var(--brand);*/
  /* padding: 16px; */
/* } */
/* .product-offer-card {

  padding: 0 16px 16px 16px;
} */

.product-secondary-offer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-secondary-offer h4 {
  margin: 0 0 12px;
}

.product-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

.rental-booking-card {
  gap: 18px;
}


.booking-title, .product-offer-title {
  margin: 4px 0 0;
  padding-top: 20px;
}

.booking-duration-row {
  margin-top: 4px;
}

.booking-duration-select {
  width: 100%;
  max-width: 520px;
  min-height: 44px;
}

.booking-calendar-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-calendar-nav {
  display: flex;
  justify-content: space-between;
}

.booking-nav-btn {
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

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

.booking-month-title {
  text-align: center;
  font-family: ui-sans-serif, system-ui, sans-serif;
  margin-bottom: 10px;
}


.booking-weekday {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 6px 0;
}

.booking-day {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #4a5737;
  cursor: pointer;
  
}

.booking-day--muted {
  opacity: 0.9;
}


.booking-time-wrap--hidden {
  display: none !important;
}


@media (max-width: 900px) {
  .booking-months-grid {
    grid-template-columns: 1fr;
  }
}

/* BOOKING MONTH ARROWS */

.rental-booking-card {
  gap: 18px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.booking-title {
  margin: 4px 0 0;
}

.booking-duration-row {
  margin-top: 4px;
}

.booking-duration-select {
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  box-sizing: border-box;
}

.booking-months-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.booking-month {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.booking-month-header {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  gap: 6px;
}

.booking-month-title {
  text-align: center;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.booking-month-arrow {
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  padding: 0;
}

.booking-month-arrow:hover {
  color: var(--text);
}

.booking-month-arrow--placeholder {
  cursor: default;
  visibility: hidden;
}

.booking-weekdays,
.booking-days-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}

.booking-weekday {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 0;
}

.booking-day {
  min-height: 40px;
  border: 1px solid var(--line);
  background: #d0dfb8;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  color: #000000;
  font-weight: 400;
}

.booking-day--muted {
  opacity: 0.85;
}

.booking-day--disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-day--range {
  background: #000000;
  font-weight: 600;
  color: #ffffff;
}

.booking-day--selected {
  background: #000000;
  color: #ffffff;
  
  font-weight: 600;
}

.booking-time-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-open-hours {
  text-align: center;
}

.booking-time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.booking-time-btn {
  min-width: 72px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  /* border: 1px solid #4a5737; */
  background: #d0dfb8;
  cursor: pointer;
  color: #4a5737;
}

.booking-time-btn--active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.booking-summary-box {
  /* border-top: 1px solid var(--line); */
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-summary-period {
  margin: 0;
}

.booking-summary-line,
.booking-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.booking-add-btn {
  width: 100%;
  min-height: 52px;
}

@media (max-width: 1200px) {
  .booking-months-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .booking-month-title {
    font-size: 20px;
  }

  .booking-day {
    min-height: 36px;
    font-size: 13px;
  }

  .booking-time-grid {
    justify-content: flex-start;
  }
}

/* END OF BOOKING MONTH ARROWS */


/* PRODUCT PAGE + CART POPOVER */

.product-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.product-page-grid__left,
.product-page-grid__right {
  width: 100%;
  min-width: 0;
  max-width: none;
  
}

.product-summary,
.product-gallery--compact,
.product-description-block,
.product-specs {
  width: 100%;
  max-width: none;
}

.product-offers-wrap--sticky {
  position: sticky;
  top: 24px;
}

.product-gallery--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.product-gallery__img--hero {
  grid-column: 1 / -1;
  width: 100%;
  height: 440px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  display: block;
}

.product-gallery__img--thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
  display: block;
}

.product-description-block {
  margin-top: 20px;
}

.product-spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}


/* CARD COMPACT */

.product-offer-card--compact {
  padding: 16px;
}

.cart-popover-open {
  overflow: hidden;
}

.cart-popover-shell {
  position: fixed;
  inset: auto 18px 18px auto;
  z-index: 60;
}

.cart-popover-total-price{
  padding: 0 14px 0 14px;
  font-weight: 600;
}

.cart-popover-fab {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.cart-popover-icon-wrap {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-block;
  top: 4px;
  left: -1px;
}

.cart-popover-icon {  
  width: 34px;
  height: 34px;
  display: block;
}

.cart-popover-badge {
  position: absolute;
  top: 11px;
  left: 20px;
  transform: translate(-50%, -50%);
  min-width: 10px;
  height: 10px;
  padding: 4px 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.cart-popover-fab:hover .cart-popover-badge,
.cart-popover-fab:focus-visible .cart-popover-badge {

  color: #ffffff;

}

.cart-popover-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 80;
}

.cart-popover-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-popover-panel {
  position: absolute;
  top: 24px;
  right: 24px;
  width: min(480px, calc(100vw - 24px));
  max-height: calc(100vh - 48px);
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-popover-header,
.cart-popover-footer {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.cart-popover-footer {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-popover-fab {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cart-popover-badge {
  
  color: #c62828;


}

.cart-popover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* .cart-popover-header h3 {
  margin: 0;
} */
.cart-popover-header-content{
  min-width: 200px;
  width: auto;
}

.cart-popover-close {
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  color: var(--primary);
  outline: 2px solid var(--primary);
}

@media (max-width: 760px) {
  .cart-popover-close {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
  }
}

.cart-popover-body {
  padding: 20px 24px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-popover-item {
  border: 1px solid var(--line);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-popover-item-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.cart-popover-item-title {
  font-family: "thermobug-text-semibold", ui-sans-serif, system-ui, sans-serif;
}

.cart-popover-item-meta {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 6px;
}

.cart-popover-item-price {
  white-space: nowrap;
  font-family: "thermobug-text-semibold", ui-sans-serif, system-ui, sans-serif;
}

.cart-popover-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-popover-remove {
  border: 0;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  padding: 5px 8px;
  border: 2px solid var(--primary);
}

.cart-popover-total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-popover-checkout,
.cart-popover-continue {
  width: 100%;
}

.button-secondary {
  background: #fff;
  color: var(--primary);
  outline: 1px solid var(--line);
}

@media (max-width: 1100px) {
  .product-page-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-offers-wrap--sticky {
    position: static;
    top: auto;
  }
}

@media (max-width: 700px) {
  .product-gallery--compact {
    grid-template-columns: 1fr;
  }

  .product-gallery__img--hero {
    grid-column: auto;
    height: 260px;
  }

  .product-gallery__img--thumb {
    height: 180px;
  }

  .product-spec-row {
    grid-template-columns: 1fr;
  }

  .cart-popover-panel {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    max-height: 85vh;
  }
}
.admin-order-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.admin-order-mini-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 12px;
  font-weight: 600;
}

.admin-order-mini-badge--warn {
  background: #fff7ed;
  color: #9a3412;
}

.admin-order-mini-badge--danger {
  background: #fef2f2;
  color: #b91c1c;
}

.thermobug-order-detail-row td {
  background: #fafafa;
}

.thermobug-order-detail-cell {
  padding: 0 !important;
}

.thermobug-order-detail-card {
  margin: 10px 0 14px;
  padding: 16px;
  border: 1px solid #e7e7e7;
  /* border-radius: 12px; */
  background: #fff;
}

.thermobug-order-detail-card h3,
.thermobug-order-detail-card h4 {
  margin: 0 0 12px;
}

.thermobug-order-detail-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px 12px;
  margin-bottom: 18px;
}

.thermobug-order-detail-label {
  font-weight: 600;
  color: #555;
}

.thermobug-order-detail-value {
  color: #222;
}

.thermobug-order-detail-block {
  margin-top: 14px;
}

.thermobug-order-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.thermobug-order-detail-table th,
.thermobug-order-detail-table td {
  border-bottom: 1px solid #ececec;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

.thermobug-order-detail-loading,
.thermobug-order-detail-empty {
  color: #666;
  padding: 8px 0;
}


/* === Thermobug admin workflow additions === */

.admin-orders-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  align-items: end;
}

.admin-orders-filters .field {
  flex: 1 1 180px;
  min-width: 180px;
}

.admin-order-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.admin-order-workflow-meta {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 8px 12px;
  margin: 14px 0 18px;
}

.admin-order-workflow-label {
  font-weight: 600;
  color: #555;
}

.admin-order-workflow-value {
  color: #222;
}

.admin-order-notes-wrap {
  margin-top: 16px;
}

.admin-order-notes-wrap textarea {
  min-height: 110px;
  resize: vertical;
}

.admin-order-notes-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.admin-order-inline-status {
  margin-top: 8px;
  font-size: 13px;
  color: #667085;
}

.admin-order-detail-section-title {
  margin: 18px 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.admin-order-mini-badge--success {
  background: #ecfdf3;
  color: #027a48;
}

.admin-order-mini-badge--neutral {
  background: #f4f4f5;
  color: #3f3f46;
}

@media (max-width: 760px) {
  .admin-orders-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-orders-filters .field {
    min-width: 100%;
  }

  .admin-order-detail-actions {
    flex-direction: column;
  }

  .admin-order-detail-actions .admin-table-btn {
    width: 100%;
  }

  .admin-order-workflow-meta {
    grid-template-columns: 1fr;
  }
}


/* LEGAL ACEPTANCE */

.checkout-legal-acceptance .row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
  /* padding-top:30px; */
}

.checkout-legal-acceptance input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin: 3px 0 0 0;
  flex: 0 0 auto;
  outline: none;
  box-shadow: none;
}

.checkout-legal-acceptance .checkout-legal-label {
  margin-top: 5px;
  line-height: 1.4;
  display: inline;
}

input[type="checkbox"],
input[type="checkbox"]:focus,
input[type="checkbox"]:active,
input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: none;
}

.product-weeks-input--small{
  width: 50%;
  /* max-width: 240px; */
}

@media (max-width: 760px) {
  .product-weeks-input--small  {
    width: 100%;
  }
}

/* === CHECKOUT STRUCTURE FIX 2026-03-31 === */
#offer-checkout-root .product-layout > .checkout-card {
  display: block !important;
  backdrop-filter: none !important;
}

#offer-checkout-root .product-layout > .checkout-card > * {
  background: transparent !important;
  border-left: 0 !important;
  border-right: 0 !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#offer-checkout-root .product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 420px);
  gap: 28px;
  align-items: start;
}

#offer-checkout-root .product-offers-grid {
  grid-column: 1;
  align-self: start;
  display: grid;
  /* gap: 18px; */
}

#offer-checkout-root .checkout-card--customer {
  grid-column: 2;
  align-self: start;
  padding: 22px;
  /* border-radius: 20px; */
  overflow: hidden;
}

#offer-checkout-root .checkout-card--pricing {
  grid-column: 1 / -1;
  padding: 22px;
  /* border-radius: 20px; */
  overflow: hidden;
  position: relative;
}

.product-weeks-input--readonly{
  padding-bottom: 10px !important;
  font-size: 14px;
}

#offer-checkout-root .product-layout > .checkout-card > h3 {
    padding: 0;
    margin: 0 0 0px;
    padding-bottom: 14px !important;
    font-size: 26px;
    border-bottom: 1px solid var(--line);
}

#offer-checkout-root .checkout-card--customer > h3, 
#offer-checkout-root .checkout-card--pricing > .checkout-pricing-row {
  position: relative;
}



#offer-checkout-root .checkout-card--customer > h3::before,
#offer-checkout-root .checkout-card--pricing > .checkout-pricing-row::before {
  content: "";
  position: absolute;
  left: -22px;
  right: -22px;
  top: -22px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary2) 100%);
}

#offer-checkout-root .checkout-card--pricing > .checkout-pricing-row::before {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary2) 100%);
}

#offer-checkout-root .checkout-card--customer > h3 {
  margin: 0 0 14px;
  padding-bottom: 14px !important;
  font-size: 26px;
  border-bottom: 1px solid var(--line);
}

#offer-checkout-root .checkout-card--customer > .note {
  margin: 0 0 14px;
}

.note-rental {
  font-size: 16px;
  /* font-weight: 600; */
  padding: 16px 0 2px 0 !important;
  margin: 6px 0 0px 0 !important;  
}

.note-sell {
  font-size: 16px;
  /* font-weight: 600; */
  padding: 6px 0 2px 0 !important;
  margin: 6px 0 0px 0 !important;  
}

.note-rental-timeperiod {
  margin: 6px 0 16px 0 !important;  
  /* border-bottom: 1px solid var(--line); */
}

#offer-checkout-root .checkout-login-row,
#offer-checkout-root .checkout-customer-row,
#offer-checkout-root .checkout-pricing-row,
#offer-checkout-root .checkout-pay-row {
  margin-bottom: 16px;
}

#offer-checkout-root .checkout-login-row .field,
#offer-checkout-root .checkout-pay-row .field {
  display: flex;
}

#offer-checkout-root .checkout-login-row .button,
#offer-checkout-root .checkout-pay-row .button {
  width: 100%;
  margin-top: 0;
}

#offer-checkout-root .checkout-customer-row .field,
#offer-checkout-root .checkout-pricing-row .field {
  flex: 1 1 0;
  min-width: 0;
}

#offer-checkout-root .checkout-customer-row label,
#offer-checkout-root .checkout-pricing-row label {
  margin-bottom: 10px;
  font-family: "thermobug-text-semibold", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #667085;
}

#offer-checkout-root .checkout-customer-row input,
#offer-checkout-root .checkout-customer-row .input,
#offer-checkout-root .checkout-pricing-row input {
  min-height: 48px;
  border: 1px solid #dbe3ee;
  background: #fff;
}

.input-country{
  border: none;
}



#offer-checkout-root .checkout-delivery-note-row {
  margin-bottom: 0;
  padding-top: 2px;
}

#offer-checkout-root .checkout-delivery-note-row .field {
  flex: 1 1 100%;
}

#offer-checkout-root .checkout-delivery-note-row .note {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #f8fbff;
  color: var(--brand);
  line-height: 1.5;
}

#offer-checkout-root .checkout-pricing-row .field {
  /* max-width: 420px; */
  max-width: 46%;
}

#offer-checkout-root .checkout-summary-card {
  /* margin: 0 0 16px; */
  padding: 20px;
  border: 1px solid var(--line);
  /* border-radius: 14px; */
  background: #fff !important;
  box-shadow: none !important;
}

#offer-checkout-root .checkout-summary-card .row {
  align-items: center;
  margin-bottom: 10px;
}

#offer-checkout-root .checkout-summary-card .row:last-child {
  margin-bottom: 0;
}

#offer-checkout-root .checkout-summary-separator {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 16px 0;
}

#offer-checkout-root .checkout-card--pricing > .checkout-legal-acceptance {
  margin: 0 0 16px;
  padding-top: 16px;
  border-bottom: 1px solid var(--line);
  /* border-radius: 14px; */
  background: #fff !important;
}

#offer-checkout-root .checkout-card--pricing > .error {
  margin: 0;
}

@media (max-width: 980px) {
  #offer-checkout-root .product-layout {
    grid-template-columns: 1fr;
  }

  #offer-checkout-root .product-offers-grid,
  #offer-checkout-root .checkout-card--customer,
  #offer-checkout-root .checkout-card--pricing {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  #offer-checkout-root .product-layout {
    gap: 18px;
  }

  #offer-checkout-root .checkout-card--customer,
  #offer-checkout-root .checkout-card--pricing {
    padding: 18px;
  }

  #offer-checkout-root .checkout-card--customer > h3::before,
  #offer-checkout-root .checkout-card--pricing > .checkout-pricing-row::before {
    left: -18px;
    right: -18px;
    top: -18px;
  }

  #offer-checkout-root .checkout-customer-row,
  #offer-checkout-root .checkout-pricing-row,
  #offer-checkout-root .checkout-login-row,
  #offer-checkout-root .checkout-pay-row {
    flex-direction: column;
  }

  #offer-checkout-root .checkout-pricing-row .field {
    max-width: none;
  }
}


/* === CHECKOUT PRODUCTS CARD + 50-50 TOP ROW 2026-03-31 === */
#offer-checkout-root .product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

#offer-checkout-root .checkout-card--products {
  grid-column: 1;
  align-self: start;
  padding: 22px;
  /* border-radius: 20px; */
  overflow: hidden;
  position: relative;
}

#offer-checkout-root .checkout-card--products::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary2) 100%);
}

#offer-checkout-root .product-layout .checkout-card--products > .product-offers-grid > .product-offer-card {
  display: grid;
  gap: 0px;
  margin: 0;
  padding: 0;
}

#offer-checkout-root .product-offers-grid

/* #offer-checkout-root .checkout-card--customer {
  grid-column: 2;
} */

#offer-checkout-root .checkout-card--pricing {
  grid-column: 1 / -1;
}

#offer-checkout-root .checkout-card--products .product-offer-card {
  margin: 0;
}

.product-offers-grid .checkout-product-separator {
  padding: 0 !important;
  margin: 0 !important;;
  border: 1px solid var(--line);

}

@media (max-width: 980px) {
  #offer-checkout-root .product-layout {
    grid-template-columns: 1fr;
  }

  #offer-checkout-root .checkout-card--products,
  #offer-checkout-root .checkout-card--customer,
  #offer-checkout-root .checkout-card--pricing {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  #offer-checkout-root .checkout-card--products {
    padding: 18px;
  }
}




.brand-hero--thermobug-nav .thermobug-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 44px;
  padding: 6px 6px;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.brand-hero--thermobug-nav .thermobug-header-btn:hover,
.brand-hero--thermobug-nav .thermobug-header-btn:focus {
  background: transparent;
  color: var(--primary);
  text-decoration: underline;
  outline: none;
  transform: none;
}

.thermobug-header-cart-btn {
  position: relative;
  padding-right: 12px;
}

.thermobug-header-cart-icon-wrap {
  width: 28px;
  height: 28px;
  top: 0;
  left: 0;
  flex: 0 0 auto;
}

.thermobug-header-cart-icon {
  width: 28px;
  height: 28px;
}

.thermobug-header-cart-badge {
  position: absolute;
  top: 11px;
  left: 16px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: #fff; */
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  /* border: 1px solid rgba(227, 6, 19, 0.18); */
}


/* HEADER BUTTONS */

.brand-hero__inner--thermobug-nav {
  align-items: flex-start;
}

.thermobug-header-actions {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 16px; /* ein Tick unten */
   margin-right:20px;
}

@media (max-width: 760px) {

  .brand-hero--thermobug-nav .thermobug-header-btn {
    padding: 6px 6px;
    font-size: 13px;
    width: auto;
  }

  .thermobug-header-actions {
    gap: 8px;
    /* width: 100%; */
    margin-left: auto;
    justify-content: flex-end;
    margin-top: 44px;
    margin-right:20px;
  }
}


@media (max-width: 504px) {
      .brand-hero {
        padding: 24px 0px;
    }

    .brand-hero__inner {
    width: min(1200px, calc(100vw - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
    
    .thermobug-header-actions {
    gap: 8px;
    width: 100%;
    margin-left: auto;
    justify-content: flex-end;
    margin-top: 44px;
    margin-right:20px;
  }

  .brand-logo{
  display: block;
  width: auto;
  height: 80px;
  max-height: 50px;
  
}
}

/* === ADMIN THERMOBUG INVENTORY TABLE 2026-04-01 === */
.admin-thermobug-inventory-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.admin-thermobug-inventory-table__head {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #ddd;
    text-align: center;
  vertical-align: middle;
}

.admin-thermobug-inventory-table__cell {
  padding: 8px;
  border-bottom: 1px solid #eee;
    text-align: center;
  vertical-align: middle;
}

.admin-thermobug-inventory-table__product {
  width: 22%;
    text-align: center;

}

.admin-thermobug-inventory-table__type {
  width: 8%;
    text-align: center;
  vertical-align: middle;
}

.admin-thermobug-inventory-table__slug {
  width: 12%;
  word-break: break-word;
}

.admin-thermobug-inventory-table__checkbox,
.admin-thermobug-inventory-table__reserved {
  text-align: center;
  vertical-align: middle;
  width: 20px;
}

.admin-thermobug-inventory-table__stock input {
  width: 90px;
    text-align: center;
  vertical-align: middle;
}

.admin-thermobug-inventory-table__action .button,
.admin-thermobug-inventory-table__action .admin-table-btn {
  margin-top: 0;
    text-align: center;
  vertical-align: middle;
}

.admin-thermobug-inventory-table__action .note {
  margin: 8px 0 0;
    text-align: center;
  vertical-align: middle;
}

@media (max-width: 1100px) {
  .admin-thermobug-inventory-table {
    table-layout: auto;
  }
}

/* Product gallery popover*/

.product-gallery.product-gallery--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-gallery__link {
  display: block;
  width: 100%;
}

.product-gallery__link--hero {
  grid-column: 1 / -1;
}

.product-gallery__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-gallery__img--hero {
  width: 100%;
}

.product-gallery__img {
  cursor: zoom-in;
}

/* === PRODUCT CONTENT TABS === */

.product-description-html .product-content-tabs,
.product-description-html [data-product-tabs] {
  margin-top: 8px;
}

.product-info-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
  margin: 0;
  scrollbar-width: thin;
}

.product-info-tab {
  appearance: none;
  border: 1px solid var(--line);
  background: #f3f7fc;
  color: var(--brand);
  padding: 10px 14px;
  font: inherit;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  flex: 0 0 auto;
}

.product-info-tab.is-active {
  background: #fff;
  color: var(--text);
  border-color: var(--brand);
}

.product-info-panels {
  /* border-top: 1px solid var(--line); */
  padding-top: 12px;
}

.product-info-panel[hidden] {
  display: none !important;
}

.product-info-panel > :first-child {
  margin-top: 0;
}

@media (max-width: 700px) {
  .product-info-tabs {
    gap: 6px;
    margin-bottom: 10px;
  }

  .product-info-tab {
    padding: 10px 12px;
    font-size: 14px;
    width: max-content;
    max-width: none;
    white-space: nowrap;
  }
}

.booking-deposit-note{
  color: var(--primary);
}


.muted {
    color: #666;
    margin-bottom: 2rem;
  }
  section {
    margin-bottom: 2rem;
  }
  address {
    font-style: normal;
    white-space: pre-line;
  }

  .legacy-shell {
    padding: 20px 14px;
  }
  ul {
      padding-left: 1.2rem;
    }

      .note-legacy {
      padding: 14px 16px;
      background: #ffffff;
      border-left: 4px solid var(--primary);
      margin: 1rem 0 1.5rem;
    }

/* === ACCOUNT LOGIN / REGISTER TABS === */
.account-auth-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin: 0 0 1.25rem;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  overflow-y: hidden;
}

.account-auth-tab,
button.account-auth-tab {
  appearance: none;
  width: auto;
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: #f6f8fb;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  top: 1px;
  box-shadow: none;
  outline: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  overflow-y: hidden;
}

.account-auth-tab + .account-auth-tab,
button.account-auth-tab + button.account-auth-tab {
  margin-left: -1px;
}

.account-auth-tab:hover,
.account-auth-tab:focus,
button.account-auth-tab:hover,
button.account-auth-tab:focus {
  background: #eef2f7;
  color: var(--text);
  outline: none;
  text-decoration: none;
  transform: none;
}

.account-auth-tab.is-active,
button.account-auth-tab.is-active {
  background: #fff;
  color: var(--primary);
  border-color: var(--line);
  border-top: 3px solid var(--primary);
  padding-top: 10px;
  z-index: 2;
}

.account-auth-panel[hidden] {
  display: none !important;
}

.account-auth-panel .error,
.account-auth-panel .success {
  margin-top: 1rem;
}

.field input.is-invalid,
input.is-invalid {
  border-color: #d93025 !important;
  outline-color: #d93025 !important;
  box-shadow: 0 0 0 1px rgba(217, 48, 37, 0.2);
}

@media (max-width: 760px) {
  .account-auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-auth-tab,
  button.account-auth-tab {
    width: 100%;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
  }
}

/* === END OF ACCOUNT LOGIN / REGISTER TABS === */

/* === CHECKOUT SUMMARY ROWS === */
  .summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: 45%;
    margin-bottom: 8px;
  }
@media (max-width: 760px) {
  .summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-bottom: 8px;
  }

  .summary-label {
    flex: 1 1 auto;
    min-width: 0;
  }

  .summary-value {
    flex: 0 0 auto;
    text-align: right;
    white-space: nowrap;
  }

  .summary-label {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .summary-value {
    flex: 0 0 auto;
    text-align: right;
    white-space: nowrap;
  }
}