:root {
    --color-bg: #ffffff;
    --color-text: #212529;
    --color-muted: #6c757d;
    --color-border: #dee2e6;
    --color-light: #f8f9fa;
    --color-dark: #212529;
    --color-primary: #0d6efd;
    --color-primary-hover: #0b5ed7;
    --color-notice-dark: #1f2937;
    --color-notice-light: #f8f9fa;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.75rem 2rem rgba(33, 37, 41, 0.08);
    --transition: all 0.2s ease;
    --header-logo-height: 72px;
    --header-search-height: 52px;
    --sticky-top-offset: 0px;
    --site-header-height: 0px;
    --site-navigation-height: 0px;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--color-bg);
    color: var(--color-text);
}

body {
    font-size: 1rem;
    line-height: 1.5;
}

#wrapper {
    min-height: 100vh;
    background: var(--color-bg);
}

.wrapper-fluid {
    width: 100%;
    max-width: none;
    margin: 0;
}

.wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.fluid,
.edge-to-edge {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

/* --------------------------------------------------
   Links
-------------------------------------------------- */

a {
    transition: var(--transition);
    text-decoration: none !important;
}

a:hover,
a:focus {
    text-decoration: none !important;
}

/* --------------------------------------------------
   Header Notices
-------------------------------------------------- */

.header-notice {
    background: var(--color-notice-dark);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-notice-light {
    background: var(--color-notice-light);
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

.header-notice-light a {
    color: var(--color-primary);
}

.header-notice-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 44px;
    padding: 0.5rem 0;
    text-align: center;
}

.header-notice-text {
    margin: 0;
    font-size: 0.95rem;
}

.header-notice-close {
    flex: 0 0 auto;
}

.header-notice:not(.header-notice-light) .btn-close {
    filter: invert(1);
    opacity: 0.9;
}

.header-notice-details {
    padding: 1rem 0;
}

.header-notice-details-inner {
    position: relative;
}

.header-notice-details-inner .header-notice-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.header-notice-card {
    height: 100%;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
}

.header-notice-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.8125rem;
    opacity: 0.9;
}

.header-notice-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
}

.header-notice-list {
    margin: 0 0 0.5rem;
    padding-left: 1.125rem;
}

.header-notice-extra {
    font-size: 0.875rem;
    opacity: 0.95;
}

/* --------------------------------------------------
   Topbar
-------------------------------------------------- */

.topbar {
    background: var(--color-light);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.875rem;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 44px;
    padding: 0.5rem 0;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-item a {
    color: inherit;
    text-decoration: none;
}

.topbar-item a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------
   Site Header
-------------------------------------------------- */

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: var(--sticky-top-offset);
    z-index: 1035;
}

.site-header-inner {
    padding: 1rem 0;
    transition: padding 0.2s ease;
}

.site-header-desktop {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(320px, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
}

.site-header-mobile {
    display: none;
}

.site-header-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-image {
    display: block;
    max-width: 100%;
    max-height: var(--header-logo-height);
    width: auto;
    height: auto;
    transition: max-height 0.2s ease;
}

.site-header-search {
    display: flex;
    align-items: center;
    height: 100%;
}

.site-header-search-compact {
    display: none;
    align-items: center;
    flex: 0 0 auto;
}

#search-form {
    width: 100%;
}

#search-form-compact {
    width: auto;
}

#search-form .input-group {
    width: 100%;
}

#search-form-compact .input-group {
    width: auto;
    flex-wrap: nowrap;
}

#search-form .form-control,
#search-form .btn,
#search-form-compact .form-control,
#search-form-compact .btn {
    min-height: var(--header-search-height);
}

#search-form .form-control {
    border-right: 0;
}

#search-form-compact .form-control {
    border-right: 0;
}

#search-form .btn {
    min-width: 58px;
}

#search-form-compact .btn {
    min-width: 52px;
}

#search-form .btn,
#search-form-compact .btn,
#mobile-search-form .btn {
    border-top-right-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
}

.search-suggest {
    position: relative;
}

.search-suggest-results {
    position: absolute;
    top: calc(100% + 0.25rem);
    right: 0;
    left: 0;
    z-index: 1050;
    overflow: auto;
    max-height: 22rem;
    padding: 0.35rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12);
}

.search-suggest-results[hidden] {
    display: none !important;
}

.search-suggest-group {
    padding: 0.45rem 0.55rem 0.25rem;
    color: var(--color-muted);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.search-suggest-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    min-height: 2.5rem;
    padding: 0.55rem;
    border: 0;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--color-text);
    text-align: left;
}

.search-suggest-item:hover,
.search-suggest-item:focus,
.search-suggest-item.is-active {
    background: var(--color-light);
    color: var(--color-primary);
}

.search-suggest-label {
    min-width: 0;
    overflow: hidden;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggest-count {
    flex: 0 0 auto;
    color: var(--color-muted);
    font-size: 0.8125rem;
    white-space: nowrap;
}

.site-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    height: 100%;
}

.site-header-trust {
    flex: 0 0 auto;
}

.site-header-account,
.site-header-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: var(--header-search-height);
    white-space: nowrap;
}

.site-header-cart-status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
}

.site-header-cart-separator {
    opacity: 0.5;
}

.site-header-mobile-toggle,
.site-header-mobile-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.875rem;
    height: 2.875rem;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
}

.site-header-mobile-toggle:hover,
.site-header-mobile-action:hover {
    color: var(--color-primary);
    border-color: rgba(13, 110, 253, 0.35);
}

.site-header-mobile-brand {
    min-width: 0;
}

.site-header-mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.375rem;
}

.site-header-mobile-cart {
    position: relative;
}

.site-header-mobile-cart-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
}

.site-header-mobile-cart-badge.is-empty {
    display: none;
}

.site-header.is-condensed .site-header-inner {
    padding: 0.7rem 0;
}

.site-header.is-condensed .site-logo-image {
    max-height: 58px;
}

.mobile-search-offcanvas {
    --bs-offcanvas-height: auto;
    top: var(--sticky-top-offset);
    right: 0;
    left: 0;
    bottom: auto;
    height: fit-content;
    max-height: min(22rem, calc(100vh - var(--sticky-top-offset) - 0.75rem));
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    z-index: 1055;
}

.mobile-search-offcanvas .offcanvas-header,
.mobile-search-offcanvas .offcanvas-body {
    flex: 0 0 auto;
}

.mobile-search-offcanvas .offcanvas-body {
    overflow: visible;
    padding-top: 0;
    padding-bottom: 1.25rem;
}

#aptadminbar {
    position: sticky;
    top: 0;
    z-index: 1045;
}

/* --------------------------------------------------
   Offcanvas
-------------------------------------------------- */

#cartOffcanvas,
#mobileMenuOffcanvas {
    top: var(--sticky-top-offset);
    height: calc(100dvh - var(--sticky-top-offset));
}

#cartOffcanvas .offcanvas-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cart-offcanvas-summary {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.cart-offcanvas-title {
    margin: 0 0 0.25rem;
    font-weight: 700;
}

.cart-offcanvas-meta {
    margin: 0;
    color: var(--color-muted);
}

.cart-offcanvas-content {
    min-height: 8rem;
}

.cart-offcanvas-empty {
    display: grid;
    gap: 0.5rem;
}

.cart-offcanvas-total {
    display: grid;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

.cart-offcanvas-products {
    margin-top: 1rem;
}

.basket-table-offcanvas {
    margin-bottom: 0;
}

.basket-table-offcanvas tbody {
    display: grid;
}

.basket-table-offcanvas .basket-entry-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 0.875rem;
    align-items: start;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--color-border);
}

.basket-table-offcanvas .basket-entry-row:last-child {
    border-bottom: 0;
}

.basket-table-offcanvas .basket-entry-row td {
    display: block;
    padding: 0;
    border: 0;
}

.basket-table-offcanvas .basket-entry-image {
    width: auto;
}

.basket-table-offcanvas .basket-entry-thumb {
    width: 56px;
    height: 56px;
}

.basket-table-offcanvas .basket-entry-product {
    min-width: 0;
}

.basket-table-offcanvas .basket-entry-name {
    margin-bottom: 0.35rem;
}

.basket-table-offcanvas .basket-entry-meta {
    font-size: 0.875rem;
}

.basket-table-offcanvas .basket-entry-price,
.basket-table-offcanvas .basket-entry-quantity,
.basket-table-offcanvas .basket-entry-total {
    display: none;
}

.basket-entry-mobile-view,
.basket-entry-offcanvas-view {
    display: none;
}

.basket-entry-mobile-row,
.basket-entry-offcanvas-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.35rem;
}

.basket-entry-mobile-label,
.basket-entry-offcanvas-label {
    color: var(--color-muted);
}

.basket-entry-mobile-value-total,
.basket-entry-offcanvas-value-total {
    font-weight: 600;
}

.basket-table-offcanvas .basket-entry-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.875rem;
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
}

.basket-table-offcanvas .basket-entry-row:last-child {
    border-bottom: 1px solid var(--color-border);
}

.basket-table-offcanvas .basket-entry-image {
    grid-column: 1;
    grid-row: 1;
    width: auto;
}

.basket-table-offcanvas .basket-entry-product {
    grid-column: 2;
    grid-row: 1;
}

.basket-table-offcanvas .basket-entry-row td {
    display: block;
    padding: 0;
    border: 0;
}

.basket-table-offcanvas .basket-entry-quantity {
    display: block !important;
    grid-column: 1 / -1;
    grid-row: 2;
    width: auto;
    min-width: 0;
}

.basket-table-offcanvas .basket-entry-price,
.basket-table-offcanvas .basket-entry-total {
    display: none !important;
}

.basket-table-offcanvas .basket-entry-mobile-view {
    display: block;
    margin-top: 0.625rem;
}

.basket-table-offcanvas .basket-entry-offcanvas-view {
    display: none !important;
}

.basket-table-offcanvas .basket-entry-thumb {
    width: 72px;
    height: 72px;
}

.basket-table-offcanvas .basket-quantity-group {
    min-width: 0;
}

.cart-offcanvas-actions {
    display: grid;
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.cart-offcanvas-coupon {
    margin-top: 1rem;
    padding: 0.875rem;
}

.cart-offcanvas-checkout-alt {
    display: grid;
    gap: 0.75rem;
    justify-items: stretch;
}

/* --------------------------------------------------
   Basket Page
-------------------------------------------------- */

.basket-page {
    display: grid;
    gap: 1.5rem;
}

.basket-empty-state {
    padding-top: 1rem;
}

.basket-table-wrapper {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
}

.basket-table {
    margin-bottom: 0;
}

.basket-table > :not(caption) > * > * {
    padding: 1rem;
    vertical-align: middle;
}

.basket-col-image {
    width: 120px;
}

.basket-entry-thumb {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border: 1px solid var(--color-border);
    background: var(--color-light);
}

.basket-entry-name {
    display: inline-block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.basket-entry-meta {
    margin-top: 0.25rem;
    color: var(--color-muted);
}

.basket-entry-total {
    font-weight: 600;
}

.basket-entry-price-desktop,
.basket-entry-total-desktop {
    display: inline;
}

.basket-quantity-group {
    min-width: 180px;
}

.basket-entry-quantity-mobile-row {
    display: block;
}

.basket-entry-total-mobile {
    display: none;
    font-weight: 600;
    white-space: nowrap;
}

.basket-entry-error {
    display: block;
    margin-top: 0.35rem;
    color: var(--bs-danger, #dc3545);
}

.basket-summary-layout {
    align-items: start;
    margin-top: 0.5rem;
}

.basket-summary-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 1rem;
}

.basket-summary-card + .basket-summary-card {
    margin-top: 1rem;
}

.basket-summary-label {
    color: var(--color-muted);
    margin-bottom: 0.25rem;
}

.basket-summary-value {
    font-weight: 600;
}

.basket-totals-card {
    display: grid;
    gap: 0.9rem;
}

.basket-total-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--color-border);
}

.basket-total-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.basket-total-row-grand {
    font-size: 1.05rem;
}

.basket-tax-row {
    color: var(--color-muted);
}

.basket-shipping-box {
    padding-top: 0.25rem;
}

.basket-shipping-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.basket-shipping-row .form-select {
    flex: 1 1 auto;
}

.basket-shipping-cost {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    min-width: 12rem;
    text-align: right;
}

.basket-small-note {
    margin: 0;
    color: var(--color-muted);
}

.basket-actions {
    display: grid;
    gap: 1rem;
}

.basket-actions-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.basket-actions-left,
.basket-actions-right {
    display: flex;
}

.basket-actions-right {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.basket-actions-alt {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.basket-actions-or {
    display: block;
    color: var(--color-text);
    text-align: center;
    width: 100%;
}

.basket-rate-box {
    min-height: 1.5rem;
}

.basket-crossselling {
    margin-top: 0.5rem;
}

/* --------------------------------------------------
   Auth
-------------------------------------------------- */

.auth-layout,
.checkout-login-grid {
    display: grid;
    gap: 1.5rem;
}

.auth-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-layout-single {
    grid-template-columns: minmax(0, 48rem);
    justify-content: center;
}

.auth-card,
.checkout-register-section {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 1.25rem;
}

.auth-card h2,
.checkout-register-section h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.auth-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

.shop-form-stack .mb-3:last-child {
    margin-bottom: 0;
}

.auth-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.auth-cta-list {
    display: grid;
    gap: 0.75rem;
}

.auth-cta-divider {
    border-top: 1px solid var(--color-border);
    margin: 0.25rem 0;
}

.checkout-login-page {
    display: grid;
    gap: 1.5rem;
}

.checkout-login-toggle-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.checkout-login-panel {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 1.25rem;
}

.checkout-login-header h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.checkout-register-form .form-group {
    margin-bottom: 1rem;
}

.account-form .form-group {
    margin-bottom: 1rem;
}

.checkout-register-form .control-label,
.account-form .control-label {
    display: block;
    margin-bottom: 0.35rem;
    padding-top: 0;
}

.checkout-register-form hr {
    margin: 1.5rem 0;
}

.account-form hr {
    margin: 1.5rem 0;
}

.account-form-check {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0;
    color: var(--color-text);
}

.account-form-check input[type="checkbox"] {
    margin-top: 0.2rem;
    flex: 0 0 auto;
}

.checkout-register-note {
    display: block;
    margin-top: 1rem;
    color: var(--color-muted);
}

.form-control.error,
.form-select.error,
.form-group-error .form-control.error,
.form-group-error .form-select.error {
    border-color: var(--bs-danger, #dc3545);
}

.form-control.error:focus,
.form-select.error:focus,
.form-group-error .form-control.error:focus,
.form-group-error .form-select.error:focus {
    border-color: var(--bs-danger, #dc3545);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.form-group-error small {
    color: var(--bs-danger, #dc3545);
}

.checkout-edit-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.checkout-edit-link .bi {
    font-size: 0.85rem;
}

.checkout-page {
    display: grid;
    gap: 1.5rem;
}

.checkout-page-title {
    margin: 0;
}

.checkout-page-intro p:last-child {
    margin-bottom: 0;
}

.checkout-overview {
    align-items: start;
}

.checkout-section-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 1.25rem;
    box-shadow: var(--shadow-xs);
    height: 100%;
}

.checkout-section-title {
    margin-top: 0;
    margin-bottom: 0.9rem;
}

.checkout-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.checkout-section-header .checkout-section-title {
    margin-bottom: 0;
}

.checkout-section-selected-meta {
    display: grid;
    gap: 0.15rem;
    text-align: right;
    flex: 0 0 auto;
}

.checkout-section-selected-meta strong,
.checkout-section-selected-meta span {
    display: block;
    white-space: nowrap;
}

.checkout-section-selected-meta span {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.checkout-address-text {
    margin: 0;
    color: var(--color-text);
    line-height: 1.65;
}

.checkout-section-hint {
    display: block;
    color: var(--color-muted);
    margin-bottom: 0.85rem;
}

.checkout-selection-panel,
.checkout-selection-selected {
    display: grid;
    gap: 0.85rem;
}

.checkout-option-table {
    margin-bottom: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
}

.table-shipping {
    margin-bottom: 0.85rem;
}

.table-bill {
    margin-bottom: 0.85rem;
}

.checkout-option-table > :not(caption) > * > * {
    padding: 0.9rem 1rem;
    vertical-align: top;
}

.checkout-option-table label {
    font-weight: 600;
}

.checkout-option-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.checkout-option-main {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 0;
    flex: 1 1 auto;
}

.checkout-option-main input[type="radio"] {
    flex: 0 0 auto;
    margin-top: 0.15rem;
}

.checkout-option-copy {
    min-width: 0;
}

.checkout-option-note {
    margin-top: 0.25rem;
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

.checkout-option-price {
    display: grid;
    gap: 0.25rem;
    flex: 0 0 auto;
    text-align: right;
    white-space: nowrap;
    justify-items: end;
}

.checkout-selection-summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.checkout-selection-summary-main {
    min-width: 0;
}

.checkout-selection-summary-label {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.checkout-selection-summary-value {
    display: grid;
    gap: 0.15rem;
    margin-top: 0.15rem;
}

.checkout-selection-summary-value strong,
.checkout-selection-summary-value span:last-child {
    display: block;
}

.checkout-selection-summary-value span:last-child {
    color: var(--color-text);
    white-space: nowrap;
}

.checkout-toggle-link {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
}

.checkout-divider {
    margin: 0.75rem 0 1rem;
}

.checkout-legal-note {
    margin-bottom: 0;
}

.checkout-order-section {
    display: grid;
    gap: 1rem;
}

.checkout-order-wrapper {
    overflow: hidden;
}

.checkout-order-table {
    margin-bottom: 0;
}

.checkout-order-totals td {
    vertical-align: top;
}

.checkout-order-totals tr td:last-child {
    text-align: right;
}

.checkout-coupon-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.checkout-coupon-table {
    margin-bottom: 0;
}

.checkout-remark-card {
    height: auto;
    margin-bottom: 0.5rem;
}

.checkout-submit-row {
    align-items: start;
}

.checkout-back-col {
    display: flex;
}

.checkout-submit-col {
    display: flex;
    justify-content: flex-end;
}

.checkout-submit-button {
    min-width: min(100%, 20rem);
}

.checkout-entry-price,
.checkout-entry-total {
    text-align: right;
}

.checkout-entry-mobile-view .basket-entry-mobile-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.checkout-entry-mobile-view .basket-entry-mobile-row strong {
    margin-left: auto;
    text-align: right;
}

.account-order-detail {
    display: grid;
    gap: 1.5rem;
}

.account-order-wrapper,
.account-order-docs-wrapper {
    overflow: hidden;
}

.account-order-table,
.account-order-docs-table {
    margin-bottom: 0;
}

.account-order-entry-price,
.account-order-entry-total {
    text-align: right;
}

.account-order-entry-mobile-view .basket-entry-mobile-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.account-order-entry-mobile-view .basket-entry-mobile-row strong {
    margin-left: auto;
    text-align: right;
}

.account-order-totals tr td:last-child {
    text-align: right;
}

.account-order-total-label {
    text-align: left;
}

.subscription-detail-wrapper {
    overflow: hidden;
}

.subscription-detail-table {
    margin-bottom: 0;
}

.subscription-detail-entry-price,
.subscription-detail-entry-total {
    text-align: right;
}

.subscription-detail-entry-mobile-view .basket-entry-mobile-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.subscription-detail-entry-mobile-view .basket-entry-mobile-row strong {
    margin-left: auto;
    text-align: right;
}

.subscription-detail-totals tr td:last-child {
    text-align: right;
}

.account-reorder-form {
    justify-content: center;
}

.account-reorder-quantity {
    width: 4.25rem;
    min-width: 4.25rem;
    text-align: center;
    color: var(--color-text);
}

.account-order-mobile-reorder {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

.account-order-mobile-reorder-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.account-order-mobile-reorder .account-reorder-form {
    display: grid;
    gap: 0;
    justify-content: stretch;
}

.account-order-mobile-reorder .account-reorder-button {
    width: 100%;
}

/* --------------------------------------------------
   Utility Fixes
-------------------------------------------------- */

img {
    max-width: 100%;
    height: auto;
}

/* --------------------------------------------------
   Responsive
-------------------------------------------------- */

@media (max-width: 991.98px) {
    #aptadminbar {
        display: block !important;
    }

    .sidebar-area .panel-kundenaccount {
        display: none;
    }

    #cartOffcanvas,
    #mobileMenuOffcanvas {
        --bs-offcanvas-width: 100vw;
        width: 100vw;
        max-width: 100vw;
        top: var(--sticky-top-offset);
        height: calc(100dvh - var(--sticky-top-offset));
    }

    .topbar {
        display: none;
    }

    .site-header {
        top: var(--sticky-top-offset);
    }

    .site-navigation {
        display: none;
    }

    .site-header-desktop {
        display: none !important;
    }

    .site-header-mobile {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 0.875rem;
    }

    .site-header-mobile-toggle {
        justify-self: start;
    }

    .site-header-mobile-brand .site-logo-link {
        display: flex;
        justify-content: center;
    }

    .site-header-mobile-actions {
        justify-self: end;
    }

    .site-header-mobile-brand .site-logo-image {
        max-height: 48px;
    }

    .site-header-account span,
    .site-header-cart-label,
    .site-header-cart-separator {
        display: none;
    }

    .basket-table:not(.basket-table-offcanvas) .basket-entry-quantity {
        width: 18rem;
        min-width: 18rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --header-logo-height: 60px;
        --header-search-height: 48px;
    }

    .header-notice-inner {
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .header-notice-text {
        font-size: 0.9rem;
    }

    .topbar-list {
        gap: 0.75rem;
    }

    .site-header-inner {
        padding: 0.75rem 0;
    }

    .basket-col-image {
        width: 88px;
    }

    .basket-entry-thumb {
        width: 72px;
        height: 72px;
    }

    .basket-table:not(.basket-table-offcanvas) thead {
        display: none;
    }

    .basket-table:not(.basket-table-offcanvas) tbody {
        display: grid;
        gap: 1rem;
        padding: 0.75rem;
    }

    .basket-table:not(.basket-table-offcanvas) .basket-entry-row {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 0.875rem;
        padding: 0.875rem;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: #fff;
    }

    .basket-table:not(.basket-table-offcanvas) .basket-entry-row td {
        display: block;
        padding: 0;
        border: 0;
    }

    .basket-table:not(.basket-table-offcanvas) .basket-entry-image {
        grid-column: 1;
        grid-row: 1;
        width: auto;
    }

    .basket-table:not(.basket-table-offcanvas) .basket-entry-product {
        grid-column: 2;
        grid-row: 1;
    }

    .basket-table:not(.basket-table-offcanvas) .basket-entry-price,
    .basket-table:not(.basket-table-offcanvas) .basket-entry-total {
        display: none !important;
    }

    .basket-table:not(.basket-table-offcanvas) .basket-entry-quantity {
        grid-column: 1 / -1;
        width: auto;
        min-width: 0;
    }

    .basket-table:not(.basket-table-offcanvas) .basket-entry-mobile-view {
        display: block;
        margin-top: 0.625rem;
    }

    .basket-total-row,
    .basket-actions-main,
    .basket-actions-alt {
        flex-direction: column;
        align-items: stretch;
    }

    .basket-totals-card .basket-total-row {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .basket-totals-card .basket-total-row > :last-child {
        margin-left: auto;
        text-align: right;
        white-space: nowrap;
    }

    .basket-totals-card .basket-tax-row > :first-child {
        flex: 1 1 auto;
    }

    .basket-actions-left,
    .basket-actions-right {
        display: flex;
        width: 100%;
    }

    .basket-actions-right {
        align-items: stretch;
    }

    .basket-actions-left {
        order: 2;
    }

    .basket-actions-right {
        order: 1;
    }

    .basket-actions-left .btn {
        width: 100%;
    }

    .basket-shipping-row {
        flex-direction: column;
        align-items: stretch;
    }

    .basket-shipping-cost {
        min-width: 0;
        justify-content: space-between;
        text-align: left;
    }

    .auth-layout,
    .checkout-login-grid {
        grid-template-columns: 1fr;
    }

    .checkout-section-card {
        padding: 1rem;
    }

    .checkout-option-table,
    .checkout-order-table,
    .account-order-table,
    .account-order-docs-table,
    .subscription-detail-table {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .checkout-order-table {
        width: 100%;
        table-layout: auto;
    }

    .checkout-order-table colgroup {
        display: none;
    }

    .account-order-table colgroup,
    .subscription-detail-table colgroup {
        display: none;
    }

    .checkout-order-table thead {
        display: none;
    }

    .account-order-table thead,
    .subscription-detail-table thead {
        display: none;
    }

    .checkout-order-table tbody {
        display: grid;
        gap: 1rem;
        padding: 0.75rem;
    }

    .account-order-table tbody,
    .account-order-docs-table tbody,
    .subscription-detail-table tbody {
        display: grid;
        gap: 1rem;
        padding: 0.75rem;
    }

    .checkout-order-table .checkout-entry-row {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 0.875rem;
        padding: 0.875rem;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: #fff;
    }

    .account-order-table .account-order-entry-row,
    .account-order-docs-table tr,
    .subscription-detail-table .subscription-detail-entry-row {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 0.875rem;
        padding: 0.875rem;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: #fff;
    }

    .account-order-docs-table tr {
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
    }

    .subscription-detail-table .subscription-detail-entry-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .checkout-order-table .checkout-entry-row td {
        display: block;
        padding: 0;
        border: 0;
        min-width: 0;
    }

    .account-order-table .account-order-entry-row td,
    .account-order-docs-table tr td,
    .subscription-detail-table .subscription-detail-entry-row td {
        display: block;
        padding: 0;
        border: 0;
        min-width: 0;
    }

    .checkout-order-table .checkout-entry-image {
        grid-column: 1;
        grid-row: 1;
        width: auto;
    }

    .account-order-table .account-order-entry-image {
        grid-column: 1;
        grid-row: 1;
        width: auto;
    }

    .checkout-order-table .checkout-entry-product {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
    }

    .account-order-table .account-order-entry-product {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
    }

    .checkout-order-table .checkout-entry-price,
    .checkout-order-table .checkout-entry-total,
    .checkout-order-table .checkout-entry-quantity {
        display: none !important;
    }

    .account-order-table .account-order-entry-price,
    .account-order-table .account-order-entry-total,
    .account-order-table .account-order-entry-quantity,
    .account-order-table .account-order-entry-repeat,
    .subscription-detail-table .subscription-detail-entry-price,
    .subscription-detail-table .subscription-detail-entry-total,
    .subscription-detail-table .subscription-detail-entry-quantity {
        display: none !important;
    }

    .checkout-order-table .checkout-entry-mobile-view {
        display: block;
        margin-top: 0.625rem;
    }

    .account-order-table .account-order-entry-mobile-view {
        display: block;
        margin-top: 0.625rem;
    }

    .subscription-detail-table .subscription-detail-entry-mobile-view {
        display: block;
        margin-top: 0.625rem;
    }

    .checkout-option-table tbody {
        display: grid;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .checkout-option-table tr {
        display: grid;
        gap: 0.5rem;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: #fff;
    }

    .checkout-option-table td {
        display: block;
        border: 0;
        padding: 0.9rem 1rem;
    }

    .table-shipping {
        margin-bottom: 0.75rem;
    }

    .table-bill {
        margin-bottom: 0.75rem;
    }

    .shipping_selection .btn[type="submit"],
    .payment_selection .btn[type="submit"] {
        display: block;
        margin-left: auto;
    }

    .checkout-option-row {
        align-items: flex-start;
    }

    .checkout-option-price,
    .checkout-selection-summary-value span:last-child {
        text-align: right;
    }

    .checkout-order-totals,
    .checkout-order-totals tr,
    .checkout-order-totals td {
        display: block;
        width: 100%;
    }

    .checkout-order-totals tr {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 0.35rem 1rem;
        padding: 0.9rem 1rem;
        border-top: 1px solid var(--color-border);
    }

    .checkout-order-totals td {
        border: 0;
        padding: 0;
        min-width: 0;
    }

    .checkout-order-totals tr td:last-child {
        text-align: right;
    }

    .checkout-order-totals td + td {
        margin-top: 0;
    }

    .checkout-order-totals td[rowspan] {
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
    }

    .checkout-order-totals .alert,
    .checkout-order-totals .checkout-coupon-form,
    .checkout-order-totals .checkout-coupon-table {
        width: 100%;
    }

    .checkout-order-totals .text-right {
        text-align: right !important;
    }

    .account-order-totals,
    .account-order-totals tr,
    .account-order-totals td,
    .subscription-detail-totals,
    .subscription-detail-totals tr,
    .subscription-detail-totals td {
        display: block;
        width: 100%;
    }

    .account-order-totals tr,
    .subscription-detail-totals tr {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 0.35rem 1rem;
        padding: 0.9rem 1rem;
        border-top: 1px solid var(--color-border);
    }

    .account-order-totals td,
    .subscription-detail-totals td {
        border: 0;
        padding: 0;
        min-width: 0;
    }

    .account-order-totals td[rowspan] {
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
    }

    .account-order-totals td + td,
    .subscription-detail-totals td + td {
        margin-top: 0;
    }

    .account-order-totals .text-right,
    .subscription-detail-totals .text-right {
        text-align: right !important;
    }

    .account-order-total-label {
        text-align: left;
    }

    .subscription-detail-actions .btn {
        width: 100%;
    }

    .account-order-docs-table tr td:last-child {
        text-align: right;
    }


    .checkout-submit-col {
        justify-content: stretch;
    }

    .checkout-submit-button {
        width: 100%;
    }

    .checkout-submit-row {
        margin-top: 0.25rem;
    }

    .checkout-back-col {
        order: 2;
        justify-content: stretch;
    }

    .checkout-back-col .btn {
        width: 100%;
    }

    .checkout-submit-col {
        order: 1;
    }

    .checkout-register-form .control-label {
        margin-bottom: 0.35rem;
        padding-top: 0;
        text-align: left;
    }

    .account-form .control-label {
        margin-bottom: 0.35rem;
        padding-top: 0;
        text-align: left;
    }

    .auth-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 575.98px) {
    .mobile-account-nav {
        margin-top: 1.25rem;
    }

    .mobile-account-nav-link {
        min-height: 3rem;
        padding: 0.8rem 0.9rem;
    }

    .mobile-service-nav {
        gap: 0.625rem;
        margin-top: 1.25rem;
    }

    .mobile-service-link {
        min-height: 5rem;
        padding: 0.85rem 0.9rem;
    }

    .site-header-mobile {
        gap: 0.625rem;
    }

    .site-header-mobile-toggle,
    .site-header-mobile-action {
        width: 2.625rem;
        height: 2.625rem;
    }

    .site-header-mobile-brand .site-logo-image {
        max-height: 42px;
    }

    .topbar-inner {
        min-height: auto;
        padding: 0.625rem 0;
    }

    .topbar-list {
        justify-content: center;
    }

    .header-notice-card {
        padding: 0.875rem;
    }
}

/* --------------------------------------------------
   Order Step Navigation
-------------------------------------------------- */

.order-step-nav {
    margin-bottom: 1.25rem;
}

.order-step-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-step-item {
    flex: 1 1 9rem;
    min-width: 0;
}

.order-step-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-text);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

#cart_navi.order-step-nav .order-step-item:not(.active):not(.done) .order-step-link {
    background: var(--color-light);
    color: var(--color-muted);
}

#cart_navi.order-step-nav .order-step-item:not(.active):not(.done) .order-step-icon {
    opacity: 0.65;
}

#cart_navi.order-step-nav .order-step-item:not(.active):not(.done) a.order-step-link:hover,
#cart_navi.order-step-nav .order-step-item:not(.active):not(.done) a.order-step-link:focus {
    border-color: var(--color-primary);
    background: #fff;
    color: var(--color-primary);
}

.order-step-link-current,
.order-step-item.active .order-step-link,
.order-step-item.current .order-step-link {
    padding-right: 4.5rem;
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 0 0.1875rem rgba(13, 110, 253, 0.2);
}

.order-step-link-current::after,
.order-step-item.active .order-step-link::after,
.order-step-item.current .order-step-link::after {
    position: absolute;
    right: 0.625rem;
    top: 0.5rem;
    width: auto;
    height: auto;
    padding: 0.0625rem 0.35rem;
    border-radius: 999px;
    background: #fff;
    color: var(--color-primary);
    content: "Aktuell";
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.3;
}

.order-step-link-current:hover,
.order-step-link-current:focus,
.order-step-item.active .order-step-link:hover,
.order-step-item.active .order-step-link:focus,
.order-step-item.current .order-step-link:hover,
.order-step-item.current .order-step-link:focus {
    border-color: var(--color-primary-hover);
    background: var(--color-primary-hover);
    color: #fff;
}

.order-step-item.done .order-step-link {
    padding-right: 2.25rem;
    border-color: rgba(25, 135, 84, 0.35);
    background: rgba(25, 135, 84, 0.1);
    color: #146c43;
}

.order-step-item.done .order-step-link::after {
    position: absolute;
    right: 0.625rem;
    top: 50%;
    color: #198754;
    content: "\f26e";
    font-family: bootstrap-icons !important;
    font-size: 1rem;
    line-height: 1;
    transform: translateY(-50%);
}

.order-step-item.done .order-step-link:hover,
.order-step-item.done .order-step-link:focus {
    border-color: #198754;
    background: #fff;
    color: #146c43;
}

.order-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.order-step-name {
    min-width: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 575.98px) {
    .order-step-list {
        gap: 0.375rem;
    }

    .order-step-item {
        flex-basis: calc(50% - 0.375rem);
    }

    .order-step-link {
        min-height: 2.75rem;
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    .order-step-link-current,
    .order-step-item.active .order-step-link,
    .order-step-item.current .order-step-link {
        padding-right: 0.5rem;
    }

    .order-step-link-current::after,
    .order-step-item.active .order-step-link::after,
    .order-step-item.current .order-step-link::after {
        right: 0.375rem;
        top: 0.25rem;
        padding: 0;
        width: 0.5rem;
        height: 0.5rem;
        color: transparent;
        content: "";
    }
}


/* --------------------------------------------------
   Site Navigation
-------------------------------------------------- */

.site-navigation {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: calc(var(--sticky-top-offset) + var(--site-header-height));
    z-index: 1030;
    box-shadow: 0 0.25rem 0.75rem rgba(33, 37, 41, 0.04);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-navigation-inner {
    display: flex;
    align-items: center;
    min-height: 56px;
}

.site-navigation-desktop {
    position: relative;
    width: 100%;
}

/* --------------------------------------------------
   Desktop Menu
-------------------------------------------------- */

.desktop-menu,
.desktop-submenu,
.desktop-megamenu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-menu {
    display: flex;
    align-items: stretch;
    gap: 0.25rem;
}

.desktop-menu-item,
.desktop-submenu-item {
    position: relative;
}

.desktop-menu-item.has-megamenu {
    position: static;
}

.desktop-menu-item.has-children,
.desktop-menu-item.has-megamenu,
.desktop-menu-item-categories {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
}

.desktop-menu-link,
.desktop-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    min-height: 56px;
    padding: 0 1.05rem;
    border: 0;
    border-radius: 999px;
    background: none;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.desktop-submenu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    white-space: nowrap;
    background: #fff;
    border-radius: var(--radius-sm);
}

.desktop-menu-link:hover,
.desktop-menu-toggle:hover,
.desktop-submenu-link:hover {
    color: var(--color-primary);
}

.desktop-submenu-link:hover {
    background: var(--color-light);
}

.desktop-menu-link:hover,
.desktop-menu-toggle:hover,
.desktop-menu-item.is-open > .desktop-menu-link,
.desktop-menu-item.is-open > .desktop-menu-toggle,
.desktop-menu-item.active > .desktop-menu-link,
.desktop-menu-item.active > .desktop-menu-toggle,
.desktop-menu-item.current > .desktop-menu-link,
.desktop-menu-item.current > .desktop-menu-toggle,
.desktop-menu-item.selected > .desktop-menu-link,
.desktop-menu-item.selected > .desktop-menu-toggle {
    background: rgba(13, 110, 253, 0.08);
    box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.08);
}

.desktop-submenu-item.active > .desktop-submenu-link,
.desktop-submenu-item.current > .desktop-submenu-link,
.desktop-submenu-item.selected > .desktop-submenu-link {
    background: rgba(13, 110, 253, 0.08);
    color: var(--color-primary);
}

.desktop-menu-toggle {
    cursor: pointer;
}

.desktop-menu-chevron {
    font-size: 0.875rem;
    opacity: 0.75;
    transition: transform 0.2s ease;
}

/* Standard: alles geschlossen */
.desktop-submenu,
.desktop-megamenu {
    display: none;
}

/* Erste Ebene Dropdown */
.desktop-menu-item > .desktop-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 240px;
    padding: 0.5rem 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

/* Zweite und tiefere Ebene */
.desktop-submenu-item > .desktop-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1001;
    min-width: 240px;
    padding: 0.5rem 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

/* Megamenu */
.desktop-menu-item > .desktop-megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.desktop-megamenu-content img {
    max-width: 100%;
    height: auto;
}

/* Desktop: Hover-Modus */
.site-navigation.navbar-hover .desktop-menu-item.has-children:hover > .desktop-submenu,
.site-navigation.navbar-hover .desktop-submenu-item.has-children:hover > .desktop-submenu,
.site-navigation.navbar-hover .desktop-menu-item.has-megamenu:hover > .desktop-megamenu {
    display: block;
}

/* Desktop: Klick-Modus */
.site-navigation:not(.navbar-hover) .desktop-menu-item.is-open > .desktop-submenu,
.site-navigation:not(.navbar-hover) .desktop-submenu-item.is-open > .desktop-submenu,
.site-navigation:not(.navbar-hover) .desktop-menu-item.is-open > .desktop-megamenu {
    display: block;
}

/* Chevron im Klick-Modus drehen */
.site-navigation:not(.navbar-hover) .desktop-menu-item.is-open > .desktop-menu-toggle .desktop-menu-chevron,
.site-navigation:not(.navbar-hover) .desktop-submenu-item.is-open > .desktop-submenu-link .desktop-menu-chevron,
.site-navigation:not(.navbar-hover) .desktop-menu-item.is-open > .desktop-menu-link + .desktop-menu-toggle .desktop-menu-chevron {
    transform: rotate(180deg);
}

.desktop-menu-home .desktop-menu-link {
    font-size: 1.125rem;
}

.site-navigation.is-elevated {
    box-shadow: 0 0.85rem 1.8rem rgba(33, 37, 41, 0.09);
    border-bottom-color: rgba(13, 110, 253, 0.12);
}

/* --------------------------------------------------
   Mobile Menu
-------------------------------------------------- */

.mobile-menu,
.mobile-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(222, 226, 230, 0.8);
}

.mobile-menu-item.has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
}

.mobile-menu-link,
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    min-height: 48px;
    padding: 1rem 0.125rem;
    border: 0;
    background: none;
    color: var(--color-text);
    text-align: left;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-item.has-children > .mobile-menu-link {
    justify-content: flex-start;
    min-width: 0;
    padding-right: 0.75rem;
}

.mobile-menu-item.has-children > .mobile-menu-toggle {
    width: 3.5rem;
    min-width: 3.5rem;
    justify-content: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-left: 1px solid rgba(222, 226, 230, 0.8);
}

.mobile-menu-item > .mobile-submenu,
.mobile-menu-item > .mobile-megamenu-content {
    grid-column: 1 / -1;
}

.mobile-menu-link:hover,
.mobile-menu-toggle:hover {
    color: var(--color-primary);
}

.mobile-menu-wrapper {
    display: grid;
    gap: 0.25rem;
}

.mobile-service-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(222, 226, 230, 0.9);
}

.mobile-service-link {
    display: grid;
    justify-items: start;
    gap: 0.35rem;
    min-height: 5.5rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(222, 226, 230, 0.9);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: var(--color-text);
    text-decoration: none;
    box-shadow: 0 0.35rem 1rem rgba(33, 37, 41, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mobile-service-link i {
    font-size: 1.15rem;
    color: var(--color-primary);
}

.mobile-service-link span {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
}

.mobile-service-link:hover,
.mobile-service-link:focus {
    color: var(--color-primary);
    border-color: rgba(13, 110, 253, 0.25);
    box-shadow: 0 0.6rem 1.4rem rgba(33, 37, 41, 0.08);
    transform: translateY(-1px);
}

.mobile-account-nav {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(222, 226, 230, 0.9);
}

.mobile-account-nav-title {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.mobile-account-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid rgba(222, 226, 230, 0.9);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 0.35rem 1rem rgba(33, 37, 41, 0.04);
}

.mobile-account-nav-item + .mobile-account-nav-item {
    border-top: 1px solid rgba(222, 226, 230, 0.8);
}

.mobile-account-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 3.25rem;
    padding: 0.85rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
}

.mobile-account-nav-link i {
    flex: 0 0 auto;
    color: var(--color-muted);
    font-size: 0.9rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-account-nav-link:hover,
.mobile-account-nav-link:focus,
.mobile-account-nav-item.active .mobile-account-nav-link,
.mobile-account-nav-item.current .mobile-account-nav-link {
    color: var(--color-primary);
    background: rgba(13, 110, 253, 0.05);
}

.mobile-account-nav-link:hover i,
.mobile-account-nav-link:focus i,
.mobile-account-nav-item.active .mobile-account-nav-link i,
.mobile-account-nav-item.current .mobile-account-nav-link i {
    color: var(--color-primary);
    transform: translateX(2px);
}

.mobile-menu > .mobile-menu-item:first-child {
    border-top: 1px solid rgba(222, 226, 230, 0.8);
}

.mobile-submenu {
    margin-bottom: 0.5rem;
    padding: 0.25rem 0 0.25rem 1rem;
}

.mobile-submenu .mobile-menu-item:last-child {
    border-bottom: 0;
}

.mobile-menu-home .mobile-menu-link {
    font-weight: 600;
}

.mobile-menu-chevron {
    font-size: 0.875rem;
    opacity: 0.75;
    transition: transform 0.2s ease;
}

.mobile-submenu[hidden],
.mobile-megamenu-content[hidden] {
    display: none !important;
}

.mobile-menu-item.is-open > .mobile-menu-toggle,
.mobile-menu-item.is-open > .mobile-menu-link {
    color: var(--color-primary);
    padding-left: 0.45rem;
}

.mobile-menu-item.has-children.is-open > .mobile-menu-toggle {
    padding-left: 0.5rem;
}

/* Mobil: Chevron nach unten */
.mobile-menu-item.is-open > .mobile-menu-toggle .mobile-menu-chevron {
    transform: rotate(90deg);
}

.desktop-menu-link-static,
.mobile-menu-link-static {
    cursor: default;
}

.mobile-megamenu-content {
    padding: 0.75rem 0 0.75rem 1rem;
}

.mobile-menu > .mobile-menu-item > .mobile-menu-link,
.mobile-menu > .mobile-menu-item > .mobile-menu-toggle {
    font-size: 1rem;
}

.mobile-submenu .mobile-menu-link,
.mobile-submenu .mobile-menu-toggle {
    min-height: 44px;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
}

/* --------------------------------------------------
   Page Meta / Breadcrumbs
-------------------------------------------------- */

.page-meta {
    padding: 0.875rem 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}

.page-meta-inner {
    min-height: 48px;
}

.page-meta-breadcrumb-nav {
    display: flex;
    align-items: center;
    min-height: 100%;
}

.page-breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 0.875rem;
    line-height: 1.4;
}

.page-breadcrumb .breadcrumb-item,
.page-breadcrumb li {
    color: var(--color-muted);
}

.page-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.page-breadcrumb a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.page-meta-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.page-meta-actions .btn {
    min-height: 2.25rem;
}

@media (max-width: 767.98px) {
    .page-meta {
        padding: 0.75rem 0;
    }

    .page-meta-inner {
        align-items: flex-start;
    }

    .page-meta-actions {
        justify-content: flex-start;
    }

    .page-breadcrumb {
        font-size: 0.8125rem;
    }

    .blog-list-item {
        grid-template-columns: 1fr;
    }

    .blog-rating-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-card-list {
        grid-template-columns: 1fr;
    }

    .product-card-list-side {
        justify-items: stretch;
        text-align: left;
    }

    .product-card-list-side .product-rating {
        justify-content: flex-start !important;
    }

    .listing-toolbar-form {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .listing-toolbar-controls {
        justify-content: flex-start;
    }

    .category-description-image {
        float: none;
        display: block;
        margin: 0 0 1rem;
    }

    .product-filter-horizontal .product-filter-price {
        grid-template-columns: 1fr;
    }

    .product-filter-sidebar .product-filter-price {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------
   Main Content / Sidebar Layout
-------------------------------------------------- */

.main-content {
    padding: 1.5rem 0 2rem;
    background: #fff;
}

.body-layout {
    min-width: 0;
}

.edge-to-edge > .row {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
}

.content-area {
    min-width: 0;
}

.content-top {
    margin-bottom: 1rem;
}

.content-top:empty {
    margin-bottom: 0;
}

.content-body .edge-to-edge > .row > .widget-slideshow:first-child {
    margin-top: 0;
}

.content-body {
    min-width: 0;
}

.shop-form {
    max-width: 760px;
    margin: 1.25rem 0;
}

.shop-form .form-label {
    font-weight: 600;
}

.shop-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
}

.shop-message {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.shop-message-card {
    width: min(100%, 520px);
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.shop-message-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-light);
}

.shop-message-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
}

.shop-message-body {
    padding: 1.25rem;
}

.brand-grid-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 7rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.brand-grid-link:hover {
    border-color: var(--color-primary);
}

.brand-grid-link img {
    max-height: 5rem;
    width: auto;
}

.widget-slider-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-section-title {
    margin: 0 0 1rem;
    color: var(--color-text);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
}

.widget-footer {
    display: flex;
    margin-top: 1rem;
}

.widget-footer-end {
    justify-content: flex-end;
}

.widget-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
}

.widget-footer-link::after {
    content: ">";
    font-size: 0.875rem;
    line-height: 1;
}

.widget-footer-link:hover,
.widget-footer-link:focus {
    color: var(--color-primary-hover);
}

.widget-bannerslider .carousel-item img {
    display: block;
    width: 100%;
    height: auto;
}

.widget-bannerslider .carousel-caption {
    right: 1.25rem;
    left: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(17, 24, 39, 0.6);
}

.hero-teaser {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #0f172a;
    box-shadow: var(--shadow-sm);
}

.hero-teaser-media,
.hero-teaser-overlay,
.hero-teaser-content-wrap {
    position: absolute;
    inset: 0;
}

.hero-teaser-media {
    z-index: 0;
}

.hero-teaser-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-teaser-overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.48) 42%, rgba(15, 23, 42, 0.2) 100%);
    opacity: calc(var(--hero-teaser-overlay-opacity, 100) / 100);
}

.hero-teaser-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    width: 100%;
    padding: 2rem;
}

.hero-teaser-box-start .hero-teaser-content-wrap {
    justify-content: flex-start;
}

.hero-teaser-box-center .hero-teaser-content-wrap {
    justify-content: center;
}

.hero-teaser-box-end .hero-teaser-content-wrap {
    justify-content: flex-end;
}

.hero-teaser-box-vertical-start .hero-teaser-content-wrap {
    align-items: flex-start;
    padding-top: 1.25rem;
}

.hero-teaser-box-vertical-center .hero-teaser-content-wrap {
    align-items: center;
}

.hero-teaser-box-vertical-end .hero-teaser-content-wrap {
    align-items: flex-end;
    padding-bottom: 1.25rem;
}

.hero-teaser-align-start .hero-teaser-content {
    text-align: left;
}

.hero-teaser-align-center .hero-teaser-content {
    text-align: center;
}

.hero-teaser-align-end .hero-teaser-content {
    text-align: right;
}

.hero-teaser-content {
    display: grid;
    gap: 1rem;
    max-width: 100%;
    color: #fff;
}

.hero-teaser-width-4 {
    width: min(28rem, 100%);
}

.hero-teaser-width-6 {
    width: min(38rem, 100%);
}

.hero-teaser-width-8 {
    width: min(48rem, 100%);
}

.hero-teaser-width-12 {
    width: min(100%, 72rem);
}

.hero-teaser-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
}

.hero-teaser-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.6;
}

.hero-teaser-text p:last-child {
    margin-bottom: 0;
}

.hero-teaser-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-teaser-align-start .hero-teaser-actions {
    justify-content: flex-start;
}

.hero-teaser-align-center .hero-teaser-actions {
    justify-content: center;
}

.hero-teaser-align-end .hero-teaser-actions {
    justify-content: flex-end;
}

.usp-bar-card {
    height: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-xs);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.usp-bar-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.usp-bar-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: var(--shadow-sm);
}

.usp-bar-inner {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    height: 100%;
    padding: 1.25rem;
}

.usp-bar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2.75rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    font-size: 1.4rem;
}

.usp-bar-body {
    display: grid;
    gap: 0.35rem;
}

.usp-bar-title {
    margin: 0;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.usp-bar-text {
    color: var(--color-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.usp-bar-text p:last-child {
    margin-bottom: 0;
}

.video-section {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #0f172a;
    box-shadow: var(--shadow-sm);
}

.video-section-media,
.video-section-overlay,
.video-section-content-wrap {
    position: absolute;
    inset: 0;
}

.video-section-media {
    z-index: 0;
}

.video-section-video,
.video-section-poster {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-section-overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.42) 44%, rgba(15, 23, 42, 0.18) 100%);
    opacity: calc(var(--video-section-overlay-opacity, 100) / 100);
}

.video-section-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.video-section-align-start .video-section-content-wrap {
    justify-content: flex-start;
    text-align: left;
}

.video-section-align-center .video-section-content-wrap {
    justify-content: center;
    text-align: center;
}

.video-section-align-end .video-section-content-wrap {
    justify-content: flex-end;
    text-align: right;
}

.video-section-content {
    display: grid;
    gap: 1rem;
    max-width: 100%;
    color: #fff;
}

.video-section-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.05;
}

.video-section-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.6;
}

.video-section-text p:last-child {
    margin-bottom: 0;
}

.video-section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.logo-strip-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 6.5rem;
    height: 100%;
    padding: 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-xs);
}

.logo-strip-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo-strip-image {
    display: block;
    max-width: 100%;
    max-height: 3rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

.widget-logostrip:not(.widget-logostripauto) .logo-strip-image {
    max-height: 4.25rem;
}

.widget-teasergrid > .row {
    align-items: stretch;
}

.widget-teasergrid > .row > [class*='col-'] {
    display: flex;
}

.teaser-grid-card {
    display: flex;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--surface-color);
    box-shadow: var(--shadow-xs);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.teaser-grid-card:hover,
.teaser-grid-card:focus-within {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.teaser-grid-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.teaser-grid-media {
    overflow: hidden;
    background: var(--surface-muted);
}

.teaser-grid-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
}

.teaser-grid-body {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    flex: 1 1 auto;
    padding: 1rem;
}

.teaser-grid-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.teaser-grid-text {
    color: var(--color-muted);
    line-height: 1.6;
}

.teaser-grid-text p:last-child {
    margin-bottom: 0;
}

.teaser-grid-align-start {
    text-align: left;
    justify-items: start;
}

.teaser-grid-align-center {
    text-align: center;
    justify-items: center;
}

.teaser-grid-align-end {
    text-align: right;
    justify-items: end;
}

@media (max-width: 991.98px) {
    .teaser-grid-mobile-align-start {
        text-align: left;
        justify-items: start;
    }

    .teaser-grid-mobile-align-center {
        text-align: center;
        justify-items: center;
    }

    .teaser-grid-mobile-align-end {
        text-align: right;
        justify-items: end;
    }
}

.faq-accordion .accordion-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.faq-accordion .accordion-item + .accordion-item {
    margin-top: 0.85rem;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--color-text);
    background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--color-text);
    background: rgba(37, 99, 235, 0.06);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    color: var(--color-muted);
    line-height: 1.65;
}

.countdown-deal {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: stretch;
    border-radius: var(--radius-md);
    background: #0f172a;
    box-shadow: var(--shadow-sm);
}

.countdown-deal-media,
.countdown-deal-overlay {
    position: absolute;
    inset: 0;
}

.countdown-deal-media {
    z-index: 0;
}

.countdown-deal-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.countdown-deal-overlay {
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.84) 0%, rgba(15, 23, 42, 0.44) 55%, rgba(15, 23, 42, 0.2) 100%);
    opacity: calc(var(--countdown-deal-overlay-opacity, 100) / 100);
}

.countdown-deal-content-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    min-height: inherit;
    width: 100%;
    padding: 2rem;
}

.countdown-deal-position-start {
    justify-items: start;
}

.countdown-deal-position-center {
    justify-items: center;
}

.countdown-deal-position-end {
    justify-items: end;
}

.countdown-deal-content {
    position: relative;
    display: grid;
    align-content: center;
    gap: 1rem;
    width: min(100%, 42rem);
    color: #fff;
}

.countdown-deal-align-start {
    text-align: left;
    justify-items: start;
}

.countdown-deal-align-center {
    text-align: center;
    justify-items: center;
}

.countdown-deal-align-end {
    text-align: right;
    justify-items: end;
}

.countdown-deal-align-center .countdown-deal-badge,
.countdown-deal-align-center .countdown-deal-actions {
    justify-content: center;
}

.countdown-deal-align-end .countdown-deal-badge {
    margin-left: auto;
}

.countdown-deal-align-end .countdown-deal-actions {
    justify-content: flex-end;
}

.countdown-deal-badge {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
}

.countdown-deal-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
}

.countdown-deal-text {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.6;
}

.countdown-deal-text p:last-child {
    margin-bottom: 0;
}

.countdown-deal-timer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.countdown-deal-align-center .countdown-deal-timer {
    justify-content: center;
}

.countdown-deal-align-end .countdown-deal-timer {
    justify-content: flex-end;
}

.countdown-deal-unit {
    display: grid;
    gap: 0.2rem;
    min-width: 5.5rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    text-align: center;
}

.countdown-deal-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-deal-label {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.countdown-deal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.countdown-deal-actions-hidden {
    display: none;
}

.newsletter-teaser {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.newsletter-teaser-media {
    position: relative;
    min-height: 100%;
}

.newsletter-teaser-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 22rem;
    object-fit: cover;
}

.newsletter-teaser-body {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 2rem;
}

.newsletter-teaser-align-start {
    text-align: left;
    justify-items: start;
}

.newsletter-teaser-align-center {
    text-align: center;
    justify-items: center;
}

.newsletter-teaser-align-end {
    text-align: right;
    justify-items: end;
}

.newsletter-teaser-badge {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
}

.newsletter-teaser-title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
}

.newsletter-teaser-text {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.newsletter-teaser-text p:last-child {
    margin-bottom: 0;
}

.newsletter-teaser-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.newsletter-teaser-align-center .newsletter-teaser-actions {
    justify-content: center;
}

.newsletter-teaser-align-end .newsletter-teaser-actions {
    justify-content: flex-end;
}

.newsletter-teaser-note {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.split-content {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.split-content-light {
    background: rgba(148, 163, 184, 0.08);
}

.split-content-white {
    background: #fff;
    border: 1px solid var(--color-border);
}

.split-content .row.end {
    flex-direction: row-reverse;
}

.split-content-media {
    height: 100%;
}

.split-content-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 22rem;
    object-fit: cover;
}

.split-content-body {
    display: grid;
    gap: 1rem;
    align-content: center;
    padding: 2rem;
}

.split-content-title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
}

.split-content-text {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.split-content-text p:last-child {
    margin-bottom: 0;
}

.split-content-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.richtext-block {
    display: flex;
}

.richtext-align-start {
    justify-content: flex-start;
    text-align: left;
}

.richtext-align-center {
    justify-content: center;
    text-align: center;
}

.richtext-align-end {
    justify-content: flex-end;
    text-align: right;
}

.richtext-block-inner {
    display: grid;
    gap: 1rem;
}

.richtext-width-6 {
    width: min(34rem, 100%);
}

.richtext-width-8 {
    width: min(48rem, 100%);
}

.richtext-width-10 {
    width: min(62rem, 100%);
}

.richtext-width-12 {
    width: 100%;
}

.richtext-subline {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.richtext-title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
}

.richtext-text {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.richtext-text p:last-child {
    margin-bottom: 0;
}

.richtext-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.collection-list-card {
    height: 100%;
}

.collection-list-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.collection-list-media {
    position: relative;
    overflow: hidden;
}

.collection-list-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.collection-list-titlebar {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.86);
}

.collection-list-body {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    min-height: 5.25rem;
    padding: 1rem 1.15rem;
    background: #fff;
    color: var(--color-text);
}

.collection-list-title {
    margin: 0;
    color: var(--color-text);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.collection-list-card-has-image .collection-list-title {
    color: #fff;
}

.collection-list-card-has-image .collection-list-body {
    flex: 0 0 auto;
    min-height: 5.25rem;
}

.collection-list-text {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    text-align: center;
}

.collection-list-text p:last-child {
    margin-bottom: 0;
}

.collection-list-card-no-image .collection-list-link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--color-border);
    background: #fff;
}

.collection-list-card-no-image .collection-list-body {
    margin-top: 0;
    margin-inline: 0;
    min-height: 100%;
    display: grid;
    width: 100%;
    align-content: center;
    justify-items: center;
    padding: 1.5rem;
    background: #fff;
    color: var(--color-text);
}

.collection-list-card-no-image .collection-list-text {
    margin-top: 0.45rem;
}

.collection-list-card-no-image .collection-list-title {
    color: var(--color-text);
}

.collection-list-card-no-image .collection-list-text {
    color: var(--color-muted);
}

.featured-collection {
    display: grid;
    gap: 1.5rem;
}

.featured-collection-intro {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.featured-collection-subline {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.featured-collection-title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
}

.featured-collection-text {
    max-width: 52rem;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.featured-collection-text p:last-child {
    margin-bottom: 0;
}

.featured-collection-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 575.98px) {
    .featured-collection-products-mobile-1 .products-grid .col-sm-6,
    .featured-collection-products-mobile-1 .products-grid .col-lg-3 {
        width: 100%;
        flex: 0 0 100%;
    }

    .featured-collection-products-mobile-2 .products-grid .col-sm-6,
    .featured-collection-products-mobile-2 .products-grid .col-lg-3 {
        width: 50%;
        flex: 0 0 50%;
    }
}

.image-with-text {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.image-with-text-light {
    background: rgba(148, 163, 184, 0.08);
}

.image-with-text-white {
    background: #fff;
    border: 1px solid var(--color-border);
}

.image-with-text .row.end {
    flex-direction: row-reverse;
}

.image-with-text-media {
    height: 100%;
}

.image-with-text-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 24rem;
    object-fit: cover;
}

.image-with-text-body {
    display: grid;
    gap: 1rem;
    align-content: center;
    padding: 2rem;
}

.image-with-text-align-start {
    text-align: left;
    justify-items: start;
}

.image-with-text-align-center {
    text-align: center;
    justify-items: center;
}

.image-with-text-align-end {
    text-align: right;
    justify-items: end;
}

.image-with-text-eyebrow {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.image-with-text-title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
}

.image-with-text-text {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.image-with-text-text p:last-child {
    margin-bottom: 0;
}

.image-with-text-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.image-with-text-align-center .image-with-text-actions {
    justify-content: center;
}

.image-with-text-align-end .image-with-text-actions {
    justify-content: flex-end;
}

.widget-category-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.widget-category-image {
    display: block;
}

.widget-category-image img {
    display: block;
    width: 100%;
    height: auto;
}

.widget-category-title {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    background: rgba(17, 24, 39, 0.72);
    color: #fff;
    text-align: center;
}

.widget-category-link:hover .widget-category-title,
.widget-category-link:focus .widget-category-title {
    background: rgba(13, 110, 253, 0.88);
}

.imprint {
    display: grid;
    gap: 1.5rem;
}

.imprint-address {
    display: grid;
    gap: 0.25rem;
    margin: 0;
    padding: 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-light);
    text-align: center;
}

.imprint-section h2 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
}

.imprint-data {
    display: grid;
    grid-template-columns: minmax(8rem, auto) minmax(0, 1fr);
    gap: 0.5rem 1rem;
    margin: 0;
}

.imprint-data dt {
    color: var(--color-muted);
    font-weight: 600;
}

.imprint-data dd {
    margin: 0;
}

.imprint-text {
    margin-top: 0.5rem;
}

.shop-accordion {
    margin-top: 1rem;
}

.content-search-form {
    margin-bottom: 1.5rem;
}

.pageNavi {
    display: flex;
    justify-content: center;
    margin: 2rem 0 0;
}

.pageNavi nav {
    display: inline-flex;
}

.pageNavi .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
}

.pageNavi .pagination > li {
    margin: 0;
}

.pageNavi .pagination > li > a,
.pageNavi .pagination > li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-text);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.pageNavi .pagination > li > a:hover,
.pageNavi .pagination > li > a:focus {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.pageNavi .pagination > li.active > a,
.pageNavi .pagination > li.active > span {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

.pageNavi .pagination > li.disabled > a,
.pageNavi .pagination > li.disabled > span {
    border-color: var(--color-border);
    background: var(--color-light);
    color: var(--color-muted);
    cursor: not-allowed;
    opacity: 0.75;
    pointer-events: none;
}

.product-autoload {
    display: grid;
    justify-items: center;
    gap: 1rem;
    margin: 2rem 0 0;
}

#gridContent .products-grid + .products-grid,
#gridContent .products-list + .products-list {
    margin-top: 1.5rem;
}

.product-autoload-loader[hidden] {
    display: none !important;
}

.loader {
    width: 3rem;
    height: 3rem;
    border: 0.25rem solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: loader-spin 0.8s linear infinite;
    color: transparent;
    text-indent: -9999px;
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}

.content-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.content-card-image-link {
    display: block;
    background: var(--color-light);
}

.content-card-image {
    display: block;
    width: 100%;
}

.content-card-body {
    padding: 1rem;
}

.content-card-title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.content-card-title a {
    color: var(--color-text);
    text-decoration: none;
}

.content-card-title a:hover {
    color: var(--color-primary);
}

.content-card-text {
    color: var(--color-muted);
}

.content-card-text:empty {
    display: none;
}

.widget-contentseite > h2 {
    margin-bottom: 1rem;
}

.widget-blog .content-card-body,
.widget-blogfeed .content-card-body {
    display: grid;
    gap: 0.5rem;
}

.widget-news .accordion {
    margin-top: 0;
}

.widget-info {
    padding: 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.widget-info .widget-section-title {
    margin-bottom: 1rem;
}

.widget-info .list-contact {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

.widget-info .list-contact li {
    color: var(--color-muted);
}

.widget-info .list-contact i {
    margin-right: 0.5rem;
    color: var(--color-primary);
}

.widget-contentseite .content-grid {
    margin-top: 0;
}

.widget-contentseite .content-card {
    display: flex;
    flex-direction: column;
}

.widget-contentseite .content-card-image-link {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.widget-contentseite .content-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-contentseite .content-card-body {
    display: grid;
    gap: 0;
    align-content: start;
    margin-top: -3rem;
    padding: 0;
    padding-top: 0;
    text-align: center;
}

.widget-contentseite .content-card-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    margin: 0;
    padding: 0.75rem 1rem;
    background: rgba(17, 24, 39, 0.72);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.widget-contentseite .content-card-title a {
    display: block;
    color: #fff;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.widget-contentseite .content-card-title a:hover,
.widget-contentseite .content-card-title a:focus {
    color: #fff;
}

.widget-contentseite .content-card-text {
    padding: 0.75rem 1rem 1rem;
    background: #fff;
    text-align: center;
}

.content-body .row > [class*="widget-"] {
    margin-bottom: 1.5rem;
}

.content-body > [id^="CR_"] > div > .row {
    row-gap: 1.25rem;
}

.content-body > [id^="CR_"] + [id^="CR_"] {
    margin-top: 1rem;
}

@media (max-width: 767.98px) {
    .content-body > [id^="CR_"] > div > .row {
        row-gap: 1.5rem;
    }

    .content-body > [id^="CR_"] + [id^="CR_"] {
        margin-top: 1.25rem;
    }

    .hero-teaser {
        min-height: var(--hero-teaser-mobile-height, 24rem) !important;
    }

    .hero-teaser-mobile-box-start .hero-teaser-content-wrap {
        justify-content: flex-start;
    }

    .hero-teaser-mobile-box-center .hero-teaser-content-wrap {
        justify-content: center;
    }

    .hero-teaser-mobile-box-end .hero-teaser-content-wrap {
        justify-content: flex-end;
    }

    .hero-teaser-mobile-box-vertical-start .hero-teaser-content-wrap {
        align-items: flex-start;
        padding-top: 1.25rem;
        padding-bottom: 1.5rem;
    }

    .hero-teaser-mobile-box-vertical-center .hero-teaser-content-wrap {
        align-items: center;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .hero-teaser-mobile-box-vertical-end .hero-teaser-content-wrap {
        align-items: flex-end;
        padding-top: 1.5rem;
        padding-bottom: 1.25rem;
    }

    .hero-teaser-mobile-align-start .hero-teaser-content {
        text-align: left;
    }

    .hero-teaser-mobile-align-center .hero-teaser-content {
        text-align: center;
    }

    .hero-teaser-mobile-align-end .hero-teaser-content {
        text-align: right;
    }

    .hero-teaser-mobile-align-start .hero-teaser-actions {
        justify-content: flex-start;
    }

    .hero-teaser-mobile-align-center .hero-teaser-actions {
        justify-content: center;
    }

    .hero-teaser-mobile-align-end .hero-teaser-actions {
        justify-content: flex-end;
    }

    .hero-teaser-mobile-media-start .hero-teaser-image {
        object-position: left center;
    }

    .hero-teaser-mobile-media-center .hero-teaser-image {
        object-position: center center;
    }

    .hero-teaser-mobile-media-end .hero-teaser-image {
        object-position: right center;
    }

    .hero-teaser-content-wrap {
        padding: 1.5rem;
    }

    .hero-teaser-content,
    .hero-teaser-width-4,
    .hero-teaser-width-6,
    .hero-teaser-width-8,
    .hero-teaser-width-12 {
        width: 100%;
    }

    .hero-teaser-title {
        font-size: 2rem;
    }

    .widget-section-title {
        font-size: 1.75rem;
    }

    .usp-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .usp-bar-icon {
        flex-basis: 2.75rem;
    }

    .usp-bar-body {
        min-width: 0;
        width: 100%;
    }

    .usp-bar-title,
    .usp-bar-text {
        overflow-wrap: anywhere;
    }

    .video-section {
        min-height: var(--video-section-mobile-height, 24rem) !important;
    }

    .video-section-content-wrap {
        padding: 1.5rem;
        align-items: flex-end;
    }

    .video-section-mobile-box-position-start .video-section-content-wrap {
        justify-content: flex-start;
    }

    .video-section-mobile-box-position-center .video-section-content-wrap {
        justify-content: center;
    }

    .video-section-mobile-box-position-end .video-section-content-wrap {
        justify-content: flex-end;
    }

    .video-section-mobile-box-vertical-start .video-section-content-wrap {
        align-items: flex-start;
    }

    .video-section-mobile-box-vertical-center .video-section-content-wrap {
        align-items: center;
    }

    .video-section-mobile-box-vertical-end .video-section-content-wrap {
        align-items: flex-end;
    }

    .video-section-mobile-align-start .video-section-content {
        text-align: left;
    }

    .video-section-mobile-align-center .video-section-content {
        text-align: center;
    }

    .video-section-mobile-align-end .video-section-content {
        text-align: right;
    }

    .video-section-mobile-media-start .video-section-video,
    .video-section-mobile-media-start .video-section-poster {
        object-position: left center;
    }

    .video-section-mobile-media-center .video-section-video,
    .video-section-mobile-media-center .video-section-poster {
        object-position: center center;
    }

    .video-section-mobile-media-end .video-section-video,
    .video-section-mobile-media-end .video-section-poster {
        object-position: right center;
    }

    .video-section-title {
        font-size: 2rem;
    }

    .countdown-deal {
        min-height: var(--countdown-deal-mobile-height, 24rem) !important;
    }

    .countdown-deal-mobile-position-start .countdown-deal-content-wrap {
        justify-items: start;
    }

    .countdown-deal-mobile-position-center .countdown-deal-content-wrap {
        justify-items: center;
    }

    .countdown-deal-mobile-position-end .countdown-deal-content-wrap {
        justify-items: end;
    }

    .countdown-deal-mobile-align-start .countdown-deal-content {
        text-align: left;
        justify-items: start;
    }

    .countdown-deal-mobile-align-center .countdown-deal-content {
        text-align: center;
        justify-items: center;
    }

    .countdown-deal-mobile-align-end .countdown-deal-content {
        text-align: right;
        justify-items: end;
    }

    .countdown-deal-mobile-media-start .countdown-deal-image {
        object-position: left center;
    }

    .countdown-deal-mobile-media-center .countdown-deal-image {
        object-position: center center;
    }

    .countdown-deal-mobile-media-end .countdown-deal-image {
        object-position: right center;
    }

    .countdown-deal-content-wrap {
        padding: 1.5rem;
    }

    .countdown-deal-title {
        font-size: 2rem;
    }

    .newsletter-teaser {
        grid-template-columns: 1fr;
    }

    .newsletter-teaser-body,
    .split-content-body {
        padding: 1.5rem;
    }

    .newsletter-teaser-mobile-align-start {
        text-align: left;
        justify-items: start;
    }

    .newsletter-teaser-mobile-align-center {
        text-align: center;
        justify-items: center;
    }

    .newsletter-teaser-mobile-align-end {
        text-align: right;
        justify-items: end;
    }

    .newsletter-teaser-mobile-align-center .newsletter-teaser-actions {
        justify-content: center;
    }

    .newsletter-teaser-mobile-align-end .newsletter-teaser-actions {
        justify-content: flex-end;
    }

    .split-content .row.end {
        flex-direction: column;
    }

    .image-with-text .row.end {
        flex-direction: column;
    }

    .image-with-text-body {
        padding: 1.5rem;
    }

    .image-with-text-mobile-align-start {
        text-align: left;
        justify-items: start;
    }

    .image-with-text-mobile-align-center {
        text-align: center;
        justify-items: center;
    }

    .image-with-text-mobile-align-end {
        text-align: right;
        justify-items: end;
    }

    .image-with-text-mobile-align-center .image-with-text-actions {
        justify-content: center;
    }

    .image-with-text-mobile-align-end .image-with-text-actions {
        justify-content: flex-end;
    }

    .widget-footer-end {
        justify-content: flex-start;
    }
}

.blog-article {
    display: grid;
    gap: 1.25rem;
}

.marquee-gallery {
    display: grid;
    gap: 1.5rem;
}

.marquee-gallery-header {
    display: grid;
    gap: 0.75rem;
    max-width: 760px;
}

.marquee-gallery-subtitle {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.marquee-gallery-title {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
}

.marquee-gallery-text {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.marquee-gallery-text p:last-child {
    margin-bottom: 0;
}

.marquee-gallery-rows {
    display: grid;
    gap: 1rem;
}

.marquee-gallery-row {
    position: relative;
    overflow: hidden;
    container-type: inline-size;
}

.marquee-gallery-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: marquee-gallery-scroll var(--marquee-duration, 34s) linear infinite;
    will-change: transform;
}

.marquee-gallery-direction-ltr {
    animation-direction: reverse;
}

.marquee-gallery-row:hover .marquee-gallery-track {
    animation-play-state: paused;
}

.marquee-gallery-segment {
    flex: 0 0 auto;
    width: max-content;
    min-width: 0;
}

.marquee-gallery-mode-products .products-grid {
    width: max-content;
    margin: 0;
}

.marquee-gallery-mode-products .products-grid .row {
    flex-wrap: nowrap;
    margin: 0;
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 0;
}

.marquee-gallery-mode-products .products-grid .row > [class*='col-'] {
    flex: 0 0 auto;
    width: calc(100cqw / var(--marquee-products-visible, 4));
    max-width: none;
}

.marquee-gallery-mode-products .product-card {
    width: 100%;
    height: 100%;
    box-shadow: none;
}

@media (min-width: 992px) {
    .marquee-gallery-products-desktop-1 {
        --marquee-products-visible: 1;
    }

    .marquee-gallery-products-desktop-2 {
        --marquee-products-visible: 2;
    }

    .marquee-gallery-products-desktop-3 {
        --marquee-products-visible: 3;
    }

    .marquee-gallery-products-desktop-4 {
        --marquee-products-visible: 4;
    }
}

@media (max-width: 991.98px) {
    .marquee-gallery-products-mobile-1 {
        --marquee-products-visible: 1;
    }

    .marquee-gallery-products-mobile-2 {
        --marquee-products-visible: 2;
    }

    .marquee-gallery-products-mobile-3 {
        --marquee-products-visible: 3;
    }
}

.marquee-gallery-custom-list {
    display: flex;
    align-items: stretch;
    gap: 1rem;
}

.marquee-gallery-custom-card {
    flex: 0 0 auto;
    width: min(18rem, calc(100vw - 4rem));
}

.marquee-gallery-custom-link {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--surface-color);
    box-shadow: var(--shadow-sm);
}

.marquee-gallery-custom-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.marquee-gallery-custom-link:hover .marquee-gallery-custom-image,
.marquee-gallery-custom-link:focus .marquee-gallery-custom-image {
    transform: scale(1.04);
}

@keyframes marquee-gallery-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.blog-article-header {
    display: grid;
    gap: 0.35rem;
}

.blog-headline {
    margin-bottom: 0;
}

.blog-datum {
    color: var(--color-muted);
}

.blog-img {
    border-radius: var(--radius-md);
}

.blog-text {
    font-size: 1rem;
    line-height: 1.65;
}

.blog-rating {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-light);
    display: grid;
    gap: 0.75rem;
}

.blog-rating-question {
    margin: 0;
}

.blog-rating-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.stars {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 0.2rem;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    border: 0;
}

.stars > input {
    position: fixed;
    opacity: 0;
    pointer-events: none;
}

.stars > label {
    color: #d6d8db;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.stars > label::before {
    content: "\2605";
}

.stars > input:checked ~ label,
.stars > label:hover,
.stars > label:hover ~ label {
    color: #f5b301;
}

.blog-rating-meta {
    color: var(--color-text);
}

.blog-article-footer {
    padding-top: 0.5rem;
}

.blog-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.blog-list-item {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.blog-list-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.blog-list-image-link {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-light);
}

.blog-list-image {
    display: block;
    width: 100%;
}

.blog-list-body {
    display: grid;
    align-content: start;
    gap: 0.5rem;
}

.blog-list-title {
    margin: 0;
    font-size: 1.35rem;
}

.blog-list-title a {
    color: var(--color-text);
    text-decoration: none;
}

.blog-list-title a:hover {
    color: var(--color-primary);
}

.blog-list-text {
    color: var(--color-muted);
    line-height: 1.6;
}

.blog-readmore-link {
    justify-self: start;
    font-weight: 600;
    text-decoration: none;
}

.blog-readmore-link:hover {
    text-decoration: underline;
}

.thumbnail-product .product-fader,
.product-image-fader {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.thumbnail-product .product-fader.is-slider .pf-track,
.product-image-fader.is-slider .pf-track {
    display: flex;
    transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.thumbnail-product .product-fader.is-slider .pf-slide,
.product-image-fader.is-slider .pf-slide {
    display: flex;
    flex: 0 0 100%;
    align-items: center;
    justify-content: center;
}

.thumbnail-product .product-fader.is-slider .pf-slide img,
.product-image-fader.is-slider .pf-slide img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.products {
    min-width: 0;
}

.listing-toolbar {
    margin: 0 0 1.5rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-light);
}

.listing-toolbar-form {
    display: grid;
    grid-template-columns: minmax(10rem, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
}

.listing-toolbar-info {
    color: var(--color-muted);
}

.listing-toolbar-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.listing-toolbar-control {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.listing-toolbar-control small,
.listing-view-switch small {
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.2;
    white-space: nowrap;
}

.listing-toolbar select,
.listing-toolbar .form-control,
.listing-toolbar .form-select {
    min-height: 2.35rem;
}

.listing-view-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0.25rem;
}

.listing-view-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-text);
    text-decoration: none;
}

.listing-view-link:hover,
.listing-view-link:focus,
.listing-view-link.active {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.category-header,
.manufacturer-info,
.category-description-more {
    margin-bottom: 1.5rem;
}

.category-description {
    display: flow-root;
    margin-top: 1rem;
}

.category-description-image {
    float: right;
    max-width: min(100%, 16rem);
    margin: 0 0 1rem 1.5rem;
    border-radius: var(--radius-md);
}

@media (max-width: 767.98px) {
    .category-description-image {
        float: none;
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem;
    }
}

.subcategory-grid {
    margin-top: 1.25rem;
}

.subcategory-card {
    display: grid;
    justify-items: center;
    gap: 0.6rem;
    height: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--color-text);
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.subcategory-card:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.subcategory-card-image img {
    max-height: 5rem;
    width: auto;
}

.subcategory-card-title {
    font-weight: 700;
}

.active-filter-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.active-filter-title {
    color: var(--color-muted);
    font-weight: 600;
}

.active-filter-item,
.active-filter-reset {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 2rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-text);
}

.active-filter-item:hover,
.active-filter-reset:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.product-filter-horizontal {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.product-filter-group {
    height: 100%;
}

.product-filter-title {
    display: block;
    margin: 0 0 0.5rem;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 700;
}

.product-filter-options {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-filter-options li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.product-filter-sidebar {
    display: grid;
    gap: 0.85rem;
}

.product-filter-horizontal .product-filter-price {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-filter-sidebar .product-filter-price {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-filter-horizontal .product-filter-price .form-label,
.product-filter-sidebar .product-filter-price .form-label {
    margin-bottom: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.product-filter-horizontal .product-filter-price .input-group-sm > .form-control,
.product-filter-horizontal .product-filter-price .input-group-sm > .btn,
.product-filter-sidebar .product-filter-price .input-group-sm > .form-control,
.product-filter-sidebar .product-filter-price .input-group-sm > .btn {
    min-height: 2rem;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.product-card-sold-out {
    opacity: 0.68;
}

.product-card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    max-width: calc(100% - 1.5rem);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 1.55rem;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    background: var(--color-muted);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
}

.product-badge-new {
    background: #dc6b19;
}

.product-badge-discount {
    background: #b42318;
}

.product-badge-best {
    background: #218838;
}

.product-badge-info {
    background: #0b7285;
}

.product-card-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 13rem;
    padding: 1rem;
    background: var(--color-light);
    text-decoration: none;
}

.product-card-image {
    display: block;
    max-height: 13rem;
    width: auto;
    margin: 0 auto;
}

.product-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1rem;
    text-align: center;
}

.product-card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-card-title a {
    color: var(--color-text);
    text-decoration: none;
}

.product-card-title a:hover {
    color: var(--color-primary);
}

.product-card-meta,
.product-card-description {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.35;
}

.product-card-price {
    display: grid;
    gap: 0.25rem;
    margin-top: 0.2rem;
}

.product-card-price strong {
    color: #218838;
    font-size: 1.25rem;
    line-height: 1.2;
}

.product-card-price small {
    font-size: 0.75rem;
    font-weight: 500;
}

.product-card-price del {
    color: var(--color-muted);
    font-size: 0.875rem;
    font-weight: 400;
}

.product-original-price,
.uvp_price,
#uvp_price,
.product-card-price del {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.product-original-price .pricevalue,
.uvp_price .pricevalue,
#uvp_price .pricevalue,
.product-card-price del {
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.product-original-price .pricename,
.uvp_price .pricename,
#uvp_price .pricename {
    font-weight: 600;
    text-decoration: none;
}

.product-colors,
.product-rating {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-colors li,
.product-rating li {
    margin: 0;
}

.color-item {
    display: inline-flex;
    width: 1.1rem;
    height: 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.product-rating {
    color: #f5b301;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.product-card-actions {
    margin-top: auto;
}

.product-card-delete {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border-color: #dc3545;
    background: rgba(255, 255, 255, 0.96);
    color: #dc3545;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}

.product-card-delete:hover,
.product-card-delete:focus {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.product-card-delete .bi {
    font-size: 0.875rem;
    line-height: 1;
}

.product-card-sold-out-info,
.sold_out_info {
    padding: 0.5rem 0.65rem;
    border-radius: var(--radius-sm);
    background: #f8d7da;
    color: #842029;
    font-size: 0.875rem;
}

.product-card-body > .product-card-sold-out-info,
.product-card-body > .sold_out_info {
    margin-top: auto;
}

.product-card-list {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr) minmax(14rem, 0.45fr);
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.product-card-list .product-card-badges {
    top: 0.5rem;
    left: 0.5rem;
}

.product-card-list-image {
    position: relative;
    min-width: 0;
}

.product-card-list .product-card-image-link {
    min-height: 11rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
}

.product-card-list .product-card-image {
    max-height: 11rem;
}

.product-card-list-main,
.product-card-list-side {
    display: grid;
    align-content: start;
    gap: 0.55rem;
    min-width: 0;
}

.product-card-list-side {
    justify-items: end;
    text-align: right;
}

.product-sidebar-carousel {
    width: 100%;
}

.product-sidebar-carousel .carousel-inner {
    overflow: hidden;
}

.product-sidebar-carousel .carousel-item {
    transition: transform 0.45s ease-in-out;
}

.product-sidebar-carousel .products {
    margin: 0;
}

.product-sidebar-carousel .products .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.product-sidebar-carousel .product-card {
    margin: 0;
    box-shadow: none;
}

/* --------------------------------------------------
   Product Detail
-------------------------------------------------- */

.product-detail {
    display: block;
}

.product-detail-header {
    margin-bottom: 1.5rem;
}

.product-detail-header h1 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.75rem, 2rem, 2.25rem);
    line-height: 1.15;
}

.product-detail-header .sub-title {
    margin: 0;
    color: var(--bs-secondary-color);
    font-size: 1.125rem;
    font-weight: 500;
}

.product-detail-main {
    margin-bottom: 2rem;
}

.product-detail-gallery {
    position: sticky;
    top: calc(var(--sticky-top-offset) + var(--site-header-height) + var(--site-navigation-height) + 1rem);
    padding: 1rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0;
    background: #fff;
}

.product-detail-main-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
}

.product-detail-main-image {
    max-height: 560px;
    object-fit: contain;
}

.product-detail-thumbs-wrap {
    margin-top: 1rem;
}

.product-detail-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-detail-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    padding: 0.35rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    background: #fff;
}

.product-detail-thumb:hover,
.product-detail-thumb:focus {
    border-color: var(--bs-primary);
    opacity: 1;
}

.product-detail-thumb img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumb-video {
    position: relative;
    display: inline-flex;
}

.play-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.24);
}

.play-overlay::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 8px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
}

.mfp-hide {
    display: none !important;
}

.product-media-modal {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-media-modal img,
.product-media-modal video {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    margin: 0 auto;
}

.product-media-modal video {
    width: 100%;
    background: #000;
}

.product-gallery-carousel .carousel-control-prev,
.product-gallery-carousel .carousel-control-next {
    width: 3rem;
}

.product-gallery-carousel .carousel-control-prev-icon,
.product-gallery-carousel .carousel-control-next-icon {
    padding: 1.2rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.45);
    background-size: 55%;
}

.product-information h1 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.75rem, 2rem, 2.25rem);
    line-height: 1.15;
}

.product-information {
    display: grid;
    gap: 1rem;
}

.product-information-top {
    display: grid;
    gap: 0.45rem;
}

.product-information .sub-title {
    margin-bottom: 1rem;
    color: var(--bs-secondary-color);
    font-size: 1.125rem;
    font-weight: 500;
}

.product-information-header {
    margin-bottom: 0;
}

.product-information-header .sub-title {
    margin-bottom: 0;
}

.product-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0;
}

.product-information .list-rating {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-information .list-rating i,
.details-rating-stars i {
    color: #f5a623;
}

.product-information .list-unstyled {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.product-meta-list {
    padding: 0;
}

.product-meta-item {
    font-size: 0.95rem;
    color: var(--bs-secondary-color);
}

.product-meta-item strong {
    color: var(--bs-body-color);
}

.product-meta-item-action {
    margin-top: 0.25rem;
}

.product-information .custom-bullet-list {
    display: grid;
    gap: 0.35rem;
    padding-left: 0;
    margin: 1rem 0;
    list-style: none;
}

.product-information .custom-bullet-list li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.product-information .custom-bullet-list i {
    margin-top: 0.2rem;
    color: var(--bs-success);
}

#price_box,
#totalpricebox,
#purchase_price_box {
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    background: var(--bs-light);
}

.product-price-box {
    display: grid;
    gap: 0.75rem;
}

.product-price-summary,
#purchase_price_box ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    align-items: baseline;
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-current-price {
    display: inline-flex;
    align-items: baseline;
}

#price_box strong,
#totalpricebox strong,
#purchase_price_box strong {
    color: var(--color-dark);
    font-size: 1.8rem;
    line-height: 1.1;
}

.product-original-price {
    color: var(--bs-secondary-color);
}

.product-current-price small {
    margin-right: 0.25rem;
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.product-price-tax {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.gprice,
#grund_price,
#scaleprice,
#klarnarate_info,
#cfg_info,
.klanarate_info,
.cfg_info {
    margin-top: 0.5rem;
    color: var(--bs-secondary-color);
    font-size: 0.95rem;
}

.product-purchase-text {
    margin: 0 0 1rem;
    color: var(--bs-secondary-color);
}

.gprice,
#grund_price {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    align-items: baseline;
}

#scaleprice {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.product-scale-price {
    display: grid;
    gap: 0.2rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    background: #fff;
}

.product-scale-price-main {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    justify-content: space-between;
}

.product-scale-price-main .pricename {
    color: var(--color-dark);
    font-weight: 700;
}

.product-scale-price-value {
    color: var(--color-primary);
    font-weight: 700;
}

.product-scale-price .gprice,
.product-scale-price .uvp_price {
    margin-top: 0;
    font-size: 0.82rem;
}

.product-scale-price .gprice {
    color: var(--color-muted);
}

.product-information .product-purchase-box {
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    background: #fff;
}

.product-information .form-group {
    display: grid;
    grid-template-columns: minmax(120px, 34%) 1fr;
    gap: 0.5rem 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.product-information .control-label {
    margin-bottom: 0;
    font-weight: 600;
}

.product-option-row {
    display: grid;
    grid-template-columns: minmax(120px, 34%) 1fr;
    gap: 0.5rem 1rem;
    align-items: start;
    margin-bottom: 1rem;
}

.product-option-row .form-label {
    margin-bottom: 0;
    font-weight: 600;
}

.product-option-control {
    min-width: 0;
}

.product-quantity-row {
    align-items: start;
}

.product-quantity-row .product-option-control {
    display: grid;
    gap: 0.35rem;
}

.product-quantity-row .control-label {
    padding-top: 0.7rem;
}

.product-quantity-row #basket_errors {
    display: block;
}

.product-quantity-message {
    display: block;
    grid-column: 1 / -1;
    margin-top: -0.35rem;
    margin-bottom: 0.85rem;
}

.product-quantity-message .product-option-control {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
}

.product-quantity-message small {
    display: block;
}

.product-quantity-message #basket_errors,
.product-quantity-message .error {
    display: block;
    color: var(--bs-danger);
    font-weight: 500;
}

.product-cart-action-body {
    min-width: 0;
}

.product-information .form-group > [class*="col-sm-"] {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
}

.product-information .input-group-btn {
    display: contents;
}

.product-purchase-option {
    margin-bottom: 0.75rem;
}

.product-purchase-separator {
    margin: 1rem 0 0.75rem;
    border: 0;
    border-top: 1px solid var(--bs-border-color);
    opacity: 1;
}

.product-purchase-option.product-purchase-option-subscription {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.product-purchase-option .form-check {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    min-height: 1.5rem;
    margin: 0;
    padding-left: 0;
}

.product-purchase-option .form-check-input {
    flex: 0 0 auto;
    margin: 0;
}

.product-purchase-option .form-check-label {
    font-weight: 600;
}

.product-purchase-toggle {
    width: 100%;
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-weight: 700;
    white-space: normal;
    background: #fff;
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
    text-align: left;
    box-shadow: none;
}

.product-purchase-toggle::after {
    content: "\25BE";
    flex: 0 0 auto;
    margin-left: 0.75rem;
    font-size: 0.9rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.product-purchase-option .btn-check {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
    opacity: 0;
}

.btn-check:checked + .product-purchase-toggle {
    background: var(--bs-light);
    color: var(--color-primary);
    border-color: var(--color-primary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-check:checked + .product-purchase-toggle::after {
    transform: rotate(180deg);
}

.product-purchase-panel {
    display: block;
    margin-top: -0.1rem;
    margin-bottom: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0 0 8px 8px;
    background: #fff;
}

.product-purchase-panel[hidden] {
    display: none !important;
}

#productPurchaseSubscriptionPanel {
    background: #fff;
}

.product-information .product-purchase-box:has(#abo_radio:checked) #productPurchaseSinglePanel {
    display: none;
}

.product-information .product-purchase-box:has(#abo_radio:checked) #productPurchaseSubscriptionPanel {
    display: block;
}

.product-information .product-purchase-box:has(#einzelkauf_radio:checked) #productPurchaseSinglePanel {
    display: block;
}

.product-information .product-purchase-box:has(#einzelkauf_radio:checked) #productPurchaseSubscriptionPanel {
    display: none;
}

.product-quantity-control {
    width: 100%;
}

.product-quantity-control .form-control {
    text-align: center;
}

.product-information .input-group .btn-number {
    width: 2.75rem;
    border-color: var(--bs-border-color);
    background: #fff;
    color: var(--bs-body-color);
}

.product-information .input-group .btn-number:hover,
.product-information .input-group .btn-number:focus {
    border-color: var(--bs-primary);
    background: var(--bs-light);
    color: var(--bs-primary);
}

.product-information .btn-block {
    width: 100%;
}

.product-cart-action .btn-cta {
    width: 100%;
    min-height: 3rem;
    border: 0;
    border-radius: 8px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.18);
}

.product-cart-action > [class*="col-sm-"] {
    grid-column: 2;
}

.product-cart-action .product-cart-action-body {
    grid-column: 2;
}

#wk_button {
    background: var(--color-primary);
    color: #fff;
}

.product-cart-action .btn-cta:hover,
.product-cart-action .btn-cta:focus,
#wk_button:hover,
#wk_button:focus {
    background: var(--color-primary-hover);
    color: #fff;
    filter: none;
}

#wk_button_abo {
    background: var(--color-primary);
    color: #fff;
}

#wk_button_abo:disabled {
    opacity: 0.65;
}

.cc-variation-selector,
.cc-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.cc-variation-selector input,
.cc-selector input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.variation-cc,
.merkmal-cc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6.25rem;
    min-height: 6.25rem;
    padding: 0.5rem;
    cursor: pointer;
    border: 1px solid var(--bs-border-color);
    border-radius: 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    color: var(--bs-body-color);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.merkmal-cc {
    font-size: 1rem;
}

.variation-cc:hover,
.variation-cc:focus,
.merkmal-cc:hover,
.merkmal-cc:focus {
    border-color: var(--bs-primary);
}

.cc-variation-selector input:checked + .variation-cc,
.cc-selector input:checked + .merkmal-cc {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.18rem rgba(var(--bs-primary-rgb), 0.2);
}

.variation-cc span,
.merkmal-cc span {
    display: block;
    min-width: 100%;
    min-height: 1em;
    color: inherit;
}

.variation_soldout2 span {
    width: 100%;
    height: 100%;
    background-image: url("../img/cc-soldout.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.variation_soldout1,
.variation_soldout2,
.variation_soldout3 {
    opacity: 0.45;
}

.rr-variation-selector,
.rr-selector {
    width: 100%;
}

.rr-variation-selector td,
.rr-selector td {
    padding: 0.25rem 0.35rem 0.25rem 0;
}

.variation-rr,
.merkmal-rr {
    cursor: pointer;
    padding-left: 0.35rem;
}

.bestellmerkmal-label {
    display: block;
}

.bestellmerkmal-beschreibung {
    display: block;
    margin-top: 0.15rem;
    color: var(--bs-secondary-color);
    font-weight: 400;
}

.product-information .list-inline.social,
.product-information > .list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.product-detail-utility {
    display: grid;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bs-border-color);
}

.product-sticky-cart {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1040;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(10px);
}

.product-sticky-cart[hidden] {
    display: none !important;
}

.product-sticky-cart-inner {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    max-width: 100%;
}

.product-sticky-cart-quantity {
    display: flex;
    flex: 0 0 auto;
    align-items: stretch;
}

.product-sticky-cart-quantity[hidden] {
    display: none !important;
}

.product-sticky-cart-quantity-button,
.product-sticky-cart-quantity-input {
    min-height: 3rem;
    border-color: var(--color-border);
}

.product-sticky-cart-quantity-button {
    width: 2.75rem;
    font-weight: 700;
}

.product-sticky-cart-quantity-input {
    width: 4rem;
    text-align: center;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.product-sticky-cart-quantity-button:first-child {
    border-radius: 8px 0 0 8px;
}

.product-sticky-cart-quantity-button:last-child {
    border-radius: 0 8px 8px 0;
}

.product-sticky-cart-button {
    flex: 1 1 auto;
    min-height: 3rem;
    border-radius: 8px;
    font-weight: 700;
}

@media (min-width: 992px) {
    .product-sticky-cart {
        left: 50%;
        width: min(520px, calc(100vw - 2rem));
        transform: translateX(-50%);
    }
}

.product-detail-links,
.product-detail-social {
    font-size: 0.92rem;
}

.product-detail-links li,
.product-detail-social li {
    margin: 0;
}

.product-info-alert,
.product-best-price,
.sold_out_info {
    margin-top: 1rem;
}

.product-detail-section {
    margin-top: 2.5rem;
}

.product-detail-section-title {
    margin-bottom: 1rem;
}

.product-detail-tabs {
    gap: 0.25rem;
    border-bottom: 1px solid var(--bs-border-color);
}

.product-detail-tabs .nav-link {
    border-radius: 8px 8px 0 0;
}

.product-detail-tab-content {
    padding: 1.25rem 0;
}

.product-detail-accordion {
    display: grid;
    gap: 0.85rem;
}

.product-detail-accordion .accordion-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.product-detail-accordion .accordion-button {
    font-weight: 600;
    color: var(--color-text);
    background: #fff;
}

.product-detail-accordion .accordion-button:not(.collapsed) {
    color: var(--color-text);
    background: rgba(37, 99, 235, 0.06);
    box-shadow: none;
}

.product-detail-accordion .accordion-button:focus {
    box-shadow: none;
}

.product-detail-accordion-body {
    padding: 1rem;
}

.product-detail-tab-content table {
    margin-bottom: 0;
}

.product-detail-crossselling .products {
    margin-top: 1rem;
}

.details-rating-item {
    padding: 1rem 0;
    border-top: 1px solid var(--bs-border-color);
}

.details-rating-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.details-rating-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.product-faq-accordion .accordion-button {
    font-weight: 700;
}

.product-variations-table {
    min-width: 720px;
}

.product-variation-price {
    font-weight: 700;
}

.product-variation-basket {
    min-width: 12rem;
}

.product-variation-basket .form-control {
    max-width: 4rem;
    text-align: center;
}

.product-variation-soldout,
.product-variations-tax-info {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.nutrition-selector {
    margin-bottom: 1rem;
}

.nutrition-block .list-ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.nutrition-block .allergen {
    font-weight: 700;
}

.nutrition-block table {
    min-width: 520px;
}

.product-option-modal-title {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.product-option-modal-form {
    margin-bottom: 0;
}

.product-modal-form p {
    margin-bottom: 1rem;
}

.product-modal-form-privacy {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.product-rating-points {
    display: grid;
    gap: 0.45rem;
    padding: 0;
    border: 0;
}

.product-rating-points legend {
    margin-bottom: 0.25rem;
}

.product-rating-point-option {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.product-rating-point-option .bi {
    color: #f5a623;
}

@media (max-width: 575.98px) {
    .countdown-deal-timer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 15rem;
    }

    .countdown-deal-timer .countdown-deal-unit:nth-child(4) {
        grid-column: auto;
        justify-self: stretch;
        width: auto;
    }

    .product-detail-header {
        margin-bottom: 1rem;
    }

    .product-detail-header h1 {
        font-size: 1.85rem;
    }

    .product-detail-header .sub-title {
        font-size: 1rem;
    }

    .product-detail-gallery {
        position: static;
    }

    .product-detail-main-image-link {
        min-height: 240px;
    }

    .product-information {
        gap: 0.85rem;
    }

    .product-information h1 {
        font-size: 1.85rem;
    }

    .product-information .sub-title {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .product-price-summary,
    #purchase_price_box ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .product-information .product-purchase-box {
        padding: 0.85rem;
        margin: 0.75rem 0;
    }

    .product-information .form-group,
    .product-option-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        margin-bottom: 0.85rem;
    }

    .product-information .control-label {
        font-size: 0.95rem;
    }

    .product-purchase-option.product-purchase-option-subscription {
        grid-template-columns: 1fr;
    }

    .product-cart-action > [class*="col-sm-"] {
        grid-column: auto;
    }

    .product-cart-action .product-cart-action-body {
        grid-column: auto;
    }

    .product-detail-thumbs {
        grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    }

    .product-detail-links,
    .product-detail-social {
        gap: 0.5rem 0.85rem;
        font-size: 0.88rem;
    }

    html.has-product-sticky-cart .product-detail {
        padding-bottom: 5.5rem;
    }

    .product-sticky-cart {
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        padding: 0.75rem 0.9rem calc(0.75rem + env(safe-area-inset-bottom));
        border: 0;
        border-top: 1px solid var(--color-border);
        border-radius: 0;
        box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.08);
    }
}

.sidebar-area {
    min-width: 0;
}

.sidebar-left,
.sidebar-right {
    align-self: flex-start;
}

.sidebar-block {
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.sidebar-block-header {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-light);
}

.sidebar-block-title {
    margin: 0;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.sidebar-block-body {
    padding: 1rem;
}

.sidebar-block-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-light);
}

.sidebar-block-actions {
    margin-top: 1rem;
}

.sidebar-block-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    text-decoration: none;
}

.sidebar-block-link::after {
    content: ">";
    font-size: 0.875rem;
    line-height: 1;
}

.sidebar-block-link:hover {
    text-decoration: underline;
}

.sidebar-block p:last-child,
.sidebar-block ul:last-child,
.sidebar-block ol:last-child,
.sidebar-block table:last-child,
.sidebar-block form:last-child {
    margin-bottom: 0;
}

.sidebar-block .form-label {
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.sidebar-form {
    display: grid;
    gap: 0.875rem;
}

.sidebar-form .form-control,
.sidebar-form .form-select,
.sidebar-form .btn {
    min-height: 2.75rem;
}

.sidebar-form .mb-3 {
    margin-bottom: 0 !important;
}

.sidebar-link-list,
.sidebar-block #CatTree,
.sidebar-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-link-list li,
.sidebar-block #CatTree li {
    margin: 0;
}

.sidebar-link-list a,
.sidebar-block #CatTree a,
.sidebar-block .menulink {
    display: block;
    padding: 0.55rem 0;
    color: var(--color-text);
    text-decoration: none;
}

.sidebar-link-list a:hover,
.sidebar-block #CatTree a:hover,
.sidebar-block .menulink:hover {
    color: var(--color-primary);
}

.sidebar-block #CatTree .active > a,
.sidebar-block #CatTree li.active > a,
.sidebar-block #CatTree .current > a {
    color: var(--color-primary);
    font-weight: 700;
}

.panel-categories .sidebar-block-body {
    padding: 0.5rem;
}

.category-tree,
.panel-categories #CatTree {
    display: grid;
    gap: 0.125rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.panel-categories #CatTree ul {
    display: grid;
    gap: 0.125rem;
    margin: 0.125rem 0 0;
    padding-left: 0.875rem !important;
    list-style: none;
}

.category-tree-subtree {
    margin-top: 0.125rem;
    padding-left: 0.875rem !important;
}

.category-tree-item,
.panel-categories #CatTree li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    margin: 0;
    border-radius: var(--radius-sm);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.category-tree-item > .category-tree-link,
.panel-categories #CatTree li > a {
    display: flex;
    align-items: center;
    grid-column: 1;
    min-height: 2.5rem;
    padding: 0.55rem 0.65rem;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none;
}

.category-tree-item > .category-tree-count,
.panel-categories #CatTree li > .count {
    grid-column: 2;
    padding-right: 0.65rem;
}

.category-tree-item > .category-tree-subtree,
.panel-categories #CatTree li > ul {
    grid-column: 1 / -1;
}

.category-tree-link:hover,
.category-tree-link:focus,
.panel-categories #CatTree li > a:hover,
.panel-categories #CatTree li > a:focus {
    color: var(--color-primary);
    background: var(--color-light);
}

.category-tree-item.is-active > .category-tree-link,
.category-tree-link.is-active,
.panel-categories #CatTree li.catactive > a,
.panel-categories #CatTree li > a.l4 {
    color: var(--color-primary);
    background: rgba(13, 110, 253, 0.08);
    font-weight: 700;
}

.category-tree-count {
    color: var(--color-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}

.panel-categories #CatTree li > .count {
    color: var(--color-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}

.category-tree-image {
    display: block;
    max-height: 2rem;
    width: auto;
}

.category-tree-level-1 .category-tree-link {
    font-size: 0.95rem;
}

.category-tree-level-2 .category-tree-link,
.category-tree-level-3 .category-tree-link,
.category-tree-level-4 .category-tree-link {
    min-height: 2.25rem;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    font-size: 0.9rem;
    font-weight: 400;
}

.category-tree-level-2 .category-tree-link.is-active,
.category-tree-level-3 .category-tree-link.is-active,
.category-tree-level-4 .category-tree-link.is-active {
    font-weight: 700;
}

.panel-contentseite .sidebar-block-body {
    padding: 0.5rem;
}

.content-page-tree,
.panel-contentseite #CatTree,
.panel-contentseite ul {
    display: grid;
    gap: 0.125rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.content-page-tree-subtree,
.panel-contentseite ul ul {
    margin-top: 0.125rem;
    padding-left: 0.875rem !important;
}

.content-page-tree-item,
.panel-contentseite li {
    margin: 0;
}

.content-page-tree-link,
.panel-contentseite li > a,
.sidebar-block.panel-contentseite #CatTree li > a {
    display: flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none;
}

.content-page-tree-link:hover,
.content-page-tree-link:focus,
.panel-contentseite li > a:hover,
.panel-contentseite li > a:focus {
    color: var(--color-primary);
    background: var(--color-light);
}

.content-page-tree-item.is-active > .content-page-tree-link,
.content-page-tree-link.is-active,
.panel-contentseite li.cattree_active > a,
.sidebar-block.panel-contentseite #CatTree li.cattree_active > a,
.sidebar-block.panel-contentseite #CatTree li.is-active > a {
    color: var(--color-primary);
    background: rgba(13, 110, 253, 0.08);
    font-weight: 700;
}

.sidebar-basket-table {
    margin-bottom: 0.75rem;
    vertical-align: top;
}

.sidebar-basket-summary {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.sidebar-basket-summary-total,
.sidebar-basket-summary-meta {
    margin: 0;
}

.sidebar-basket-summary-total {
    color: var(--color-text);
    font-weight: 700;
}

.sidebar-basket-summary-meta {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.sidebar-filter-label {
    display: block;
    margin: 1rem 0 0.5rem;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 700;
}

.sidebar-filter-label:first-child {
    margin-top: 0;
}

.panel-filter #filter ul:not(.product-filter-options) {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.panel-filter #filter li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--color-text);
}

.filter-cc-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.filter-merkmal-cc {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.filter-cc-selector input:checked + .filter-merkmal-cc {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.2);
}

.block-blog-item {
    display: grid;
    gap: 0.5rem;
    padding-bottom: 0.875rem;
    margin-bottom: 0.875rem;
    border-bottom: 1px solid var(--color-border);
}

.block-blog-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.block-blog-link-img {
    display: block;
}

.block-blog-img {
    border-radius: var(--radius-sm);
}

.block-blog-link {
    color: var(--color-text);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

.block-blog-link:hover {
    color: var(--color-primary);
}

.panel-hersteller .sidebar-block-body > a {
    display: block;
    text-align: center;
}

@media (max-width: 991.98px) {
    .countdown-deal-timer {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.65rem;
        width: 100%;
        max-width: 22rem;
    }

    .countdown-deal-align-center .countdown-deal-timer {
        justify-content: initial;
        margin-inline: auto;
    }

    .countdown-deal-align-end .countdown-deal-timer {
        justify-content: initial;
        margin-left: auto;
    }

    .countdown-deal-unit {
        min-width: 0;
        padding: 0.75rem;
    }

    .countdown-deal-timer .countdown-deal-unit:nth-child(4) {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 6.5rem);
    }

    .main-content {
        padding: 1rem 0 1.5rem;
    }

    .content-top {
        margin-bottom: 0.75rem;
    }

    .content-top:empty {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .countdown-deal-timer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 15rem;
    }

    .countdown-deal-timer .countdown-deal-unit:nth-child(4) {
        grid-column: auto;
        justify-self: stretch;
        width: auto;
    }
}

/* --------------------------------------------------
   Footer Newsletter
-------------------------------------------------- */

.footer-newsletter {
    padding: 2rem 0;
    background: var(--color-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.footer-newsletter-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-newsletter-form .input-group .form-control,
.footer-newsletter-form .input-group .btn {
    min-height: 48px;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
}

.footer-social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-list li {
    margin: 0;
    padding: 0;
}

.footer-social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    text-decoration: none;
}

.footer-social-list a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */

.site-footer {
    background: #111;
    color: #ccc;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.footer-top {
    padding: 2rem 0;
}

.footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.footer-copyright p {
    margin: 0;
}

.footer-copyright {
    display: grid;
    gap: 0.25rem;
}

.footer-copyright-shop {
    color: #fff;
    font-weight: 600;
}

.footer-copyright-meta {
    color: rgba(255, 255, 255, 0.72);
}

.footer-info-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-info-list a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-info-list a:hover,
.footer-info-list a:focus {
    color: #fff;
}

@media (min-width: 768px) {
    .footer-info-list {
        justify-content: flex-end;
    }
}

@media (max-width: 991.98px) {
    .footer-social {
        justify-content: flex-start;
    }

    .footer-social-list {
        justify-content: flex-start;
    }
}

.slideshow {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.slideshow-slide {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: stretch;
    background: #0f172a;
}

.slideshow-media,
.slideshow-overlay,
.slideshow-content-wrap {
    position: absolute;
    inset: 0;
}

.slideshow-media {
    z-index: 0;
}

.slideshow-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.44) 42%, rgba(15, 23, 42, 0.2) 100%);
    opacity: calc(var(--slideshow-overlay-opacity, 100) / 100);
}

.slideshow-content-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    width: 100%;
    align-items: center;
    padding: 2rem 5.5rem;
}

.slideshow-box-position-start .slideshow-content-wrap {
    justify-content: flex-start;
}

.slideshow-box-position-center .slideshow-content-wrap {
    justify-content: center;
}

.slideshow-box-position-end .slideshow-content-wrap {
    justify-content: flex-end;
}

.slideshow-align-start .slideshow-content {
    text-align: left;
}

.slideshow-align-center .slideshow-content {
    text-align: center;
}

.slideshow-align-end .slideshow-content {
    text-align: right;
}

.slideshow-content {
    display: grid;
    gap: 1rem;
    max-width: 100%;
    color: #fff;
}

.slideshow-box-position-start .slideshow-content {
    margin-right: auto;
}

.slideshow-box-position-center .slideshow-content {
    margin-left: auto;
    margin-right: auto;
}

.slideshow-box-position-end .slideshow-content {
    margin-left: auto;
}

.slideshow-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.04;
}

.slideshow-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.6;
}

.slideshow-text p:last-child {
    margin-bottom: 0;
}

.slideshow-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.slideshow-align-start .slideshow-actions {
    justify-content: flex-start;
}

.slideshow-align-center .slideshow-actions {
    justify-content: center;
}

.slideshow-align-end .slideshow-actions {
    justify-content: flex-end;
}

.slideshow .carousel-indicators {
    margin-bottom: 1rem;
}

.slideshow .carousel-indicators [data-bs-target] {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
}

.slideshow .carousel-control-prev,
.slideshow .carousel-control-next {
    width: 4.5rem;
    opacity: 1;
}

.slideshow .carousel-control-prev {
    justify-content: flex-start;
    padding-left: 1rem;
}

.slideshow .carousel-control-next {
    justify-content: flex-end;
    padding-right: 1rem;
}

.slideshow .carousel-control-prev-icon,
.slideshow .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.58);
    background-size: 55%;
    box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.18);
}

@media (max-width: 991.98px) {
    .slideshow-slide {
        min-height: 24rem !important;
    }

    .slideshow-content-wrap {
        padding: 1.5rem;
        align-items: flex-end;
    }

    .slideshow-title {
        font-size: 2rem;
    }

    .slideshow .carousel-control-prev,
    .slideshow .carousel-control-next {
        width: 3.5rem;
    }

    .slideshow .carousel-control-prev {
        padding-left: 0.35rem;
    }

    .slideshow .carousel-control-next {
        padding-right: 0.35rem;
    }

    .slideshow .carousel-control-prev-icon,
    .slideshow .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.video-section {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #081421;
    box-shadow: var(--shadow-sm);
}

.video-section-video-only {
    background: transparent;
    box-shadow: none;
}

.video-section-media,
.video-section-overlay {
    position: absolute;
    inset: 0;
}

.video-section-media {
    z-index: 0;
}

.video-section-video,
.video-section-poster {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-section-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 11, 18, 0.24) 0%, rgba(4, 11, 18, 0.5) 42%, rgba(4, 11, 18, 0.9) 100%),
        linear-gradient(180deg, rgba(4, 11, 18, 0.18) 0%, rgba(4, 11, 18, 0.42) 100%);
    opacity: calc(var(--video-section-overlay-opacity, 100) / 100);
}

.video-section-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: inherit;
    padding: 2.5rem 1.5rem;
}

.video-section-box-position-start .video-section-content-wrap {
    justify-content: flex-start;
}

.video-section-box-position-center .video-section-content-wrap {
    justify-content: center;
}

.video-section-box-position-end .video-section-content-wrap {
    justify-content: flex-end;
}

.video-section-box-vertical-start .video-section-content-wrap {
    align-items: flex-start;
    padding-top: 1.25rem;
}

.video-section-box-vertical-center .video-section-content-wrap {
    align-items: center;
}

.video-section-box-vertical-end .video-section-content-wrap {
    align-items: flex-end;
    padding-bottom: 1.25rem;
}

.video-section-align-start .video-section-content {
    text-align: left;
}

.video-section-align-center .video-section-content {
    text-align: center;
}

.video-section-align-end .video-section-content {
    text-align: right;
}

.video-section-content {
    display: grid;
    gap: 1.15rem;
    width: min(38rem, 100%);
    max-width: 100%;
    padding: 1.5rem;
    color: #fff;
    background: rgba(7, 20, 34, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.video-section-content-width-compact {
    width: min(38rem, 100%);
}

.video-section-content-width-normal {
    width: min(48rem, 100%);
}

.video-section-content-width-wide {
    width: min(58rem, 100%);
}

.video-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 0.25rem;
    padding: 0.35rem 0.8rem 0.35rem 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

.video-section-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    background: rgba(50, 130, 236, 0.14);
    color: #4ea0ff;
    font-size: 0.9rem;
    flex: 0 0 auto;
    box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.12);
}

.video-section-badge-text {
    line-height: 1.3;
}

.video-section-title {
    display: grid;
    gap: 0.05em;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.08;
}

.video-section-title-main,
.video-section-title-highlight {
    display: block;
}

.video-section-title-highlight {
    color: #3282ec;
}

.video-section-text {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.6;
}

.video-section-text p:last-child,
.video-section-feature-text p:last-child {
    margin-bottom: 0;
}

.video-section-feature {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 0.85rem;
    align-items: start;
    min-height: 100%;
    padding: 0.9rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
}

.video-section-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    background: rgba(50, 130, 236, 0.15);
    color: #4ea0ff;
    font-size: 1.05rem;
}

.video-section-feature-title {
    margin: 0 0 0.25rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}

.video-section-feature-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.45;
}

.video-section-features {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 992px) {
    .video-section-features-grid-2x2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.video-section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.video-section-align-start .video-section-actions {
    justify-content: flex-start;
}

.video-section-align-center .video-section-actions {
    justify-content: center;
}

.video-section-align-end .video-section-actions {
    justify-content: flex-end;
}

.video-section-align-center .video-section-badge,
.video-section-align-center .video-section-text,
.video-section-align-center .video-section-subnote {
    justify-self: center;
}

.video-section-align-end .video-section-badge,
.video-section-align-end .video-section-text,
.video-section-align-end .video-section-subnote {
    justify-self: end;
}

.video-section-subnote {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
}

@media (min-width: 992px) {
    .video-section-content-wrap {
        padding: 4rem 3rem;
    }

    .video-section-box-vertical-start .video-section-content-wrap {
        padding-top: 2rem;
    }

    .video-section-box-vertical-end .video-section-content-wrap {
        padding-bottom: 2rem;
    }

    .video-section-content {
        padding: 2rem;
    }
}

@media (max-width: 991.98px) {
    .video-section {
        min-height: var(--video-section-mobile-height, 34rem) !important;
    }

    .video-section-overlay {
        background:
            linear-gradient(180deg, rgba(4, 11, 18, 0.2) 0%, rgba(4, 11, 18, 0.7) 48%, rgba(4, 11, 18, 0.92) 100%);
    }

    .video-section-content-wrap {
        padding: 1.25rem;
    }

    .video-section-content {
        padding: 1.25rem;
        border-radius: 1.25rem;
        width: 100%;
    }

    .video-section-features-grid-2x2,
    .video-section-features-stack {
        grid-template-columns: 1fr;
    }

    .video-section-title {
        font-size: 2rem;
    }

    .video-section-text {
        font-size: 1rem;
    }
}

.multicolumn-intro,
.featured-product-intro {
    display: grid;
    gap: 0.85rem;
    align-content: start;
    margin-bottom: 24px;
}

.multicolumn-card {
    height: 100%;
    padding: 24px;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    background: #fff;
}

.multicolumn-card-compact {
    padding: 20px;
}

.multicolumn-media {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.multicolumn-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.multicolumn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    font-size: 28px;
}

.multicolumn-title {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.multicolumn-align-start {
    text-align: left;
}

.multicolumn-align-center {
    text-align: center;
}

.multicolumn-align-end {
    text-align: right;
}

.multicolumn-align-center .multicolumn-icon {
    margin-left: auto;
    margin-right: auto;
}

.multicolumn-align-end .multicolumn-icon {
    margin-left: auto;
    margin-right: 0;
}

.multicolumn-text,
.featured-product-text {
    color: #4f5f78;
}

.multicolumn-text p:last-child,
.featured-product-text p:last-child {
    margin-bottom: 0;
}

.multicolumn-actions {
    margin-top: 16px;
}

.featured-product {
    display: grid;
    gap: 24px;
}

.featured-product-subline {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-product-title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
}

.featured-product-actions {
    margin-top: 20px;
}

.featured-product-card .products,
.featured-product-card .row {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .featured-product {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: start;
    }

    .widget-featuredproduct.col-sm-4 .featured-product,
    .widget-featuredproduct.col-sm-5 .featured-product {
        grid-template-columns: 1fr;
    }

    .widget-featuredproduct.col-sm-4 .featured-product-intro,
    .widget-featuredproduct.col-sm-5 .featured-product-intro {
        text-align: center;
        justify-items: center;
    }

    .widget-featuredproduct.col-sm-4 .featured-product-title,
    .widget-featuredproduct.col-sm-5 .featured-product-title {
        font-size: clamp(1.75rem, 2.1vw, 2.2rem);
    }

    .widget-featuredproduct.col-sm-4 .featured-product-actions,
    .widget-featuredproduct.col-sm-5 .featured-product-actions {
        justify-content: center;
    }
}

@media (max-width: 991.98px) {
    .featured-product-intro {
        text-align: center;
        justify-items: center;
    }

    .featured-product-actions {
        justify-content: center;
    }
}

.page-top-fullwidth:empty {
    display: none;
}

.page-top-fullwidth:not(:empty) {
    margin-bottom: 1.75rem;
}

.page-bottom-fullwidth:empty {
    display: none;
}

.page-bottom-fullwidth:not(:empty) {
    margin-top: 1.75rem;
}

@media (hover: hover) and (pointer: fine) {
    .hero-teaser-media,
    .video-section-media,
    .newsletter-teaser-media,
    .collection-list-media,
    .image-with-text-media,
    .widget-category-image,
    .content-card-image-link,
    .widget-contentseite .content-card-image-link,
    .product-card-image-link,
    .marquee-gallery-custom-link,
    .before-after-stage,
    .testimonials-slider-media {
        overflow: hidden;
    }

    .hero-teaser-image,
    .video-section-poster,
    .newsletter-teaser-image,
    .collection-list-image,
    .image-with-text-image,
    .widget-category-image img,
    .content-card-image,
    .widget-contentseite .content-card-image,
    .product-card-image,
    .marquee-gallery-custom-image,
    .before-after-image,
    .before-after-after-image,
    .testimonials-slider-avatar {
        transform: scale(1);
        transform-origin: center center;
        transition: transform 2.4s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
    }

    .hero-teaser:hover .hero-teaser-image,
    .video-section:hover .video-section-poster,
    .newsletter-teaser:hover .newsletter-teaser-image,
    .collection-list-link:hover .collection-list-image,
    .image-with-text:hover .image-with-text-image,
    .widget-category-link:hover .widget-category-image img,
    .content-card:hover .content-card-image,
    .widget-contentseite .content-card:hover .content-card-image,
    .product-card:hover .product-card-image,
    .marquee-gallery-custom-card:hover .marquee-gallery-custom-image,
    .before-after:hover .before-after-image,
    .before-after:hover .before-after-after-image,
    .testimonials-slider-slide:hover .testimonials-slider-avatar {
        transform: scale(1.075);
        transition-duration: 3.6s;
        transition-timing-function: linear;
    }
}

.slideshow-media {
    overflow: hidden;
}

.slideshow-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-media-position-start .slideshow-image,
.slideshow-media-position-start .slideshow-video {
    object-position: left center;
}

.slideshow-media-position-center .slideshow-image,
.slideshow-media-position-center .slideshow-video {
    object-position: center center;
}

.slideshow-media-position-end .slideshow-image,
.slideshow-media-position-end .slideshow-video {
    object-position: right center;
}

.slideshow-animate-heading,
.slideshow-animate-text,
.slideshow-animate-action {
    opacity: 0;
    will-change: transform, opacity;
}

.carousel-item.active .slideshow-animate-heading,
.carousel-item.active .slideshow-animate-text,
.carousel-item.active .slideshow-animate-action {
    animation-duration: 0.82s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-item.active .slideshow-animate-text {
    animation-delay: 0.12s;
}

.carousel-item.active .slideshow-animate-action {
    animation-delay: 0.24s;
}

.slideshow-anim-none .slideshow-animate-heading,
.slideshow-anim-none .slideshow-animate-text,
.slideshow-anim-none .slideshow-animate-action {
    opacity: 1;
    animation: none;
}

.slideshow-anim-balanced.carousel-item.active .slideshow-animate-heading,
.carousel-item.active .slideshow-anim-balanced .slideshow-animate-heading {
    animation-name: slideshowFadeUp;
}

.slideshow-anim-balanced.carousel-item.active .slideshow-animate-text,
.carousel-item.active .slideshow-anim-balanced .slideshow-animate-text {
    animation-name: slideshowFadeUpSoft;
}

.slideshow-anim-balanced.carousel-item.active .slideshow-animate-action,
.carousel-item.active .slideshow-anim-balanced .slideshow-animate-action {
    animation-name: slideshowFadeUp;
}

.slideshow-anim-cinematic.carousel-item.active .slideshow-animate-heading,
.carousel-item.active .slideshow-anim-cinematic .slideshow-animate-heading {
    animation-name: slideshowFadeRight;
}

.slideshow-anim-cinematic.carousel-item.active .slideshow-animate-text,
.carousel-item.active .slideshow-anim-cinematic .slideshow-animate-text {
    animation-name: slideshowFadeLeft;
}

.slideshow-anim-cinematic.carousel-item.active .slideshow-animate-action,
.carousel-item.active .slideshow-anim-cinematic .slideshow-animate-action {
    animation-name: slideshowFadeUp;
}

.slideshow-anim-spotlight.carousel-item.active .slideshow-animate-heading,
.carousel-item.active .slideshow-anim-spotlight .slideshow-animate-heading {
    animation-name: slideshowZoomSoft;
}

.slideshow-anim-spotlight.carousel-item.active .slideshow-animate-text,
.carousel-item.active .slideshow-anim-spotlight .slideshow-animate-text {
    animation-name: slideshowFadeUpSoft;
}

.slideshow-anim-spotlight.carousel-item.active .slideshow-animate-action,
.carousel-item.active .slideshow-anim-spotlight .slideshow-animate-action {
    animation-name: slideshowFadeUp;
}

@keyframes slideshowFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideshowFadeUpSoft {
    from {
        opacity: 0;
        transform: translate3d(0, 16px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideshowFadeRight {
    from {
        opacity: 0;
        transform: translate3d(-28px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideshowFadeLeft {
    from {
        opacity: 0;
        transform: translate3d(28px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideshowZoomSoft {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.before-after {
    display: grid;
    gap: 1.5rem;
}

.before-after-intro {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.before-after-subline,
.testimonials-slider-subline,
.richtext-subline,
.featured-collection-subline,
.image-with-text-eyebrow,
.featured-product-subline,
.widget-subline,
.marquee-gallery-subtitle {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.before-after-title,
.brand-marquee-title,
.testimonials-slider-title,
.richtext-title,
.featured-collection-title,
.image-with-text-title,
.featured-product-title,
.marquee-gallery-title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
}

.before-after-text,
.brand-marquee-text,
.testimonials-slider-text {
    color: var(--color-muted);
    line-height: 1.65;
}

.before-after-text p:last-child,
.brand-marquee-text p:last-child,
.testimonials-slider-text p:last-child {
    margin-bottom: 0;
}

.before-after-stage {
    position: relative;
    overflow: hidden;
    min-height: 24rem;
    border-radius: var(--radius-md);
    background: #09111a;
    box-shadow: var(--shadow-sm);
}

.before-after-layer,
.before-after-after-layer {
    position: absolute;
    inset: 0;
}

.before-after-image,
.before-after-after-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-after-layer {
    clip-path: inset(0 0 0 var(--before-after-position, 50%));
}

.before-after-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--before-after-position, 50%);
    width: 2px;
    background: rgba(255, 255, 255, 0.88);
    transform: translateX(-50%);
    box-shadow: 0 0 0 999px rgba(0, 0, 0, 0.02);
    pointer-events: none;
}

.before-after-handle {
    position: absolute;
    top: 50%;
    left: var(--before-after-position, 50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.18);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.before-after-handle::before {
    content: "< >";
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.before-after-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
    appearance: none;
}

.before-after-label {
    position: absolute;
    top: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.before-after-label-before {
    left: 1rem;
}

.before-after-label-after {
    right: 1rem;
}

.brand-marquee {
    display: grid;
    gap: 1.5rem;
}
.brand-marquee-intro {
    display: grid;
    gap: 1rem;
}

.brand-marquee-track-wrap {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.brand-marquee-track {
    display: flex;
    width: max-content;
    animation: brandMarqueeScroll var(--brand-marquee-duration, 28s) linear infinite;
}

.brand-marquee-track-wrap:hover .brand-marquee-track {
    animation-play-state: paused;
}

.brand-marquee-group {
    display: flex;
    flex: 0 0 auto;
}

.brand-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 11rem;
    min-height: 7rem;
    padding: 1rem 1.25rem;
    border-right: 1px solid var(--color-border);
}

.brand-marquee-item:last-child {
    border-right: 0;
}

.brand-marquee-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.brand-marquee-image {
    display: block;
    max-width: 100%;
    max-height: 3.5rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes brandMarqueeScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.testimonials-slider {
    display: grid;
    gap: 1.5rem;
}

.testimonials-slider-intro{
    display: grid;
    gap: 1rem;
	
}
.testimonials-slider-align-start {
    text-align: left;
}

.testimonials-slider-align-center {
    text-align: center;
}

.testimonials-slider-align-end {
    text-align: right;
}

.testimonials-slider-carousel {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.testimonials-slider-slide {
    height: 100%;
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.testimonials-slider-rating {
    display: inline-flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: #f5b301;
    font-size: 1rem;
}

.testimonials-slider-quote {
    margin: 0 0 1.5rem;
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.75;
}

.testimonials-slider-footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonials-slider-align-center .testimonials-slider-rating,
.testimonials-slider-align-center .testimonials-slider-footer {
    justify-content: center;
}

.testimonials-slider-align-end .testimonials-slider-rating,
.testimonials-slider-align-end .testimonials-slider-footer {
    justify-content: flex-end;
}

.testimonials-slider-avatar-wrap {
    flex: 0 0 auto;
    width: 3.5rem;
    height: 3.5rem;
    overflow: hidden;
    border-radius: 999px;
    background: var(--color-light);
}

.testimonials-slider-avatar {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-slider-author {
    margin: 0;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 700;
}

.testimonials-slider-meta {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.testimonials-slider .carousel-indicators {
    position: static;
    margin: 1rem 0 0;
}

.testimonials-slider .carousel-indicators [data-bs-target] {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    background-color: var(--color-border);
    opacity: 1;
}

.testimonials-slider .carousel-indicators .active {
    background-color: var(--color-primary);
}

@media (max-width: 991.98px) {
    .before-after-stage {
        min-height: 18rem;
    }

    .brand-marquee-item {
        min-width: 8.5rem;
        min-height: 5.75rem;
        padding: 0.85rem 1rem;
    }

    .testimonials-slider-slide {
        padding: 1.5rem;
    }
}
.contents {
    margin: 1.5rem 0 2rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid #d8e3ec;
    border-radius: 8px;
    background: #eef5fa;
    color: #1f2937;
}

.contents-headline {
    display: block;
    margin-bottom: 0.9rem;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 800;
}

.contents ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.contents li {
    margin: 0.35rem 0;
    line-height: 1.45;
}

.contents a {
    color: #2f80c1;
    text-decoration: none;
}

.contents a:hover,
.contents a:focus {
    color: #1f5f99;
    text-decoration: underline;
}

.contents-ul-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem !important;
}

.contents-ul-2 {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem !important;
}

.contents-ul-3 {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem !important;
}

.contents-li-0 > a {
    font-weight: 750;
}

.contents-li-1 > a {
    font-weight: 650;
}

.contents-li-2 > a,
.contents-li-3 > a {
    color: #4b6078;
    font-size: 0.95rem;
}

.contents-li-2 > a:hover,
.contents-li-2 > a:focus,
.contents-li-3 > a:hover,
.contents-li-3 > a:focus {
    color: #2f80c1;
}

@media (max-width: 575.98px) {
    .contents {
        padding: 1rem;
    }

    .contents-ul-1,
    .contents-ul-2,
    .contents-ul-3 {
        padding-left: 0.85rem !important;
    }
}
