:root {
    --bri-navy: #00385F;
    --bri-navy-dark: #002840;
    --bri-mint: #00D28E;
    --bri-mint-dark: #00b87a;
    --bri-bg: #f5f8fa;
    --bri-surface: #ffffff;
    --bri-text: #1a2332;
    --bri-muted: #5a6a7a;
    --bri-border: #dde5ec;
    --bri-radius: 10px;
    --bri-shadow: 0 4px 24px rgba(0, 56, 95, 0.08);
    --bri-font: "Open Sans", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: clip; -webkit-text-size-adjust: 100%; }

body.shop-body {
    margin: 0;
    font-family: var(--bri-font);
    color: var(--bri-text);
    background: var(--bri-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.shop-body input,
.shop-body textarea,
.shop-body select,
.shop-body .form-control {
    font-size: 16px !important;
}

/* Header */
.shop-header { position: sticky; top: 0; z-index: 100; }

.shop-header-top {
    background: var(--bri-navy-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
}

.shop-header-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 20px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.shop-header-contact {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.shop-header-contact:hover { color: var(--bri-mint); }

.shop-header-main {
    background: var(--bri-navy);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.shop-header-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.shop-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}

.shop-brand-svg {
    display: block;
    height: 44px;
    width: auto;
    max-width: min(200px, 52vw);
}

.shop-brand-svg .navbar-brand-img-icon {
    fill: var(--bri-mint);
}

.shop-brand-svg .navbar-brand-img-name,
.shop-brand-svg .navbar-brand-img-subline {
    fill: #ffffff;
}

.shop-brand-logo { height: 44px; width: auto; }

.shop-brand-fallback {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.shop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.shop-nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.shop-nav a:hover { color: var(--bri-mint); }

.shop-cart-badge {
    background: var(--bri-mint);
    color: var(--bri-navy);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 99px;
    min-width: 20px;
    text-align: center;
}

.shop-mobile-toggle {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 4px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .shop-nav { display: none; }
    .shop-nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bri-navy);
        padding: 16px 20px;
        gap: 12px;
    }
    .shop-header-main { position: relative; }
}

/* Buttons */
.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    font-family: inherit;
}

.shop-btn--primary {
    background: var(--bri-mint);
    color: var(--bri-navy);
    border-color: var(--bri-mint);
}
.shop-btn--primary:hover:not(:disabled) {
    background: var(--bri-mint-dark);
    border-color: var(--bri-mint-dark);
    color: var(--bri-navy);
}

.shop-btn--outline {
    background: transparent;
    color: var(--bri-navy);
    border-color: var(--bri-navy);
}
.shop-btn--outline:hover { background: rgba(0,56,95,0.05); }

.shop-btn--block { width: 100%; }
.shop-btn--lg { padding: 14px 24px; font-size: 1rem; }
.shop-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Hero */
.shop-hero {
    background: linear-gradient(135deg, var(--bri-navy) 0%, var(--bri-navy-dark) 100%);
    color: #fff;
    padding: 64px 20px;
}

.shop-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.shop-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    color: var(--bri-mint);
    font-weight: 600;
    margin: 0 0 12px;
}

.shop-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
}

.shop-hero-lead {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 28px;
    line-height: 1.6;
}

/* Info strip */
.shop-info-strip {
    background: var(--bri-surface);
    border-bottom: 1px solid var(--bri-border);
}

.shop-info-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.shop-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--bri-muted);
}

.shop-info-item i {
    font-size: 1.4rem;
    color: var(--bri-mint);
}

/* Sections */
.shop-main { flex: 1; }

.shop-section {
    padding: 32px 20px;
}

.shop-section--cart {
    background: var(--bri-surface);
    border-top: 1px solid var(--bri-border);
}

.shop-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.shop-section-header {
    margin-bottom: 20px;
}

.shop-section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--bri-navy);
}

.shop-section-header p {
    color: var(--bri-muted);
    margin: 0;
    font-size: 0.95rem;
}

.shop-cart-count {
    font-weight: 400;
    color: var(--bri-muted);
    font-size: 1rem;
}

/* Product tiles – kompakt, volle Breite */
.shop-product-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: none;
    width: 100%;
}

.shop-product-tile {
    display: grid;
    grid-template-columns: 42% 1fr;
    align-items: stretch;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    text-align: left;
    font: inherit;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(165deg, #04507a 0%, var(--bri-navy) 48%, var(--bri-navy-dark) 100%);
    box-shadow: 0 6px 18px rgba(0, 56, 95, 0.14);
    transition: transform 0.15s, box-shadow 0.15s;
}

.shop-product-tile--featured {
    grid-template-columns: 42% 1fr;
}

.shop-product-tile:hover,
.shop-product-tile:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 56, 95, 0.2);
    outline: none;
}

.shop-product-tile:focus-visible {
    box-shadow:
        0 0 0 3px rgba(0, 210, 142, 0.45),
        0 10px 24px rgba(0, 56, 95, 0.2);
}

.shop-product-tile:active {
    transform: translateY(0);
}

.shop-product-tile-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 0;
    background: #fff;
}

.shop-product-tile--featured .shop-product-tile-media {
    min-height: 112px;
}

.shop-product-tile-media img {
    display: block;
    width: 100%;
    height: 112px;
    object-fit: contain;
    object-position: center;
}

.shop-product-tile:not(.shop-product-tile--featured) .shop-product-tile-media {
    background:
        radial-gradient(ellipse at 40% 55%, rgba(0, 210, 142, 0.2), transparent 58%),
        linear-gradient(160deg, #0a4a73 0%, #00385F 55%, #002840 100%);
    padding: 10px;
}

.shop-product-tile-glyph {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 210, 142, 0.35);
    color: var(--bri-mint);
    font-size: 1.2rem;
}

.shop-product-tile-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    padding: 12px 14px;
}

.shop-product-tile-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bri-mint);
}

.shop-product-tile-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.shop-product-tile--featured .shop-product-tile-title {
    font-size: 1.05rem;
}

.shop-product-tile-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.3;
    margin-bottom: 4px;
}

.shop-product-tile-cta {
    pointer-events: none;
    margin-top: 2px;
    padding: 6px 12px;
    font-size: 0.82rem;
}

.shop-product-tile:hover .shop-product-tile-cta {
    background: var(--bri-mint-dark);
    border-color: var(--bri-mint-dark);
}

@media (min-width: 1100px) {
    .shop-product-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

    .shop-product-tile,
    .shop-product-tile--featured {
        grid-template-columns: 38% 1fr;
    }

    .shop-product-tile-media,
    .shop-product-tile--featured .shop-product-tile-media {
        min-height: 96px;
    }

    .shop-product-tile-media img,
    .shop-product-tile--featured .shop-product-tile-media img {
        height: 96px;
    }

    .shop-product-tile-body {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .shop-product-tile,
    .shop-product-tile--featured {
        grid-template-columns: 1fr;
    }

    .shop-product-tile-media,
    .shop-product-tile--featured .shop-product-tile-media {
        min-height: 120px;
    }

    .shop-product-tile-media img,
    .shop-product-tile--featured .shop-product-tile-media img {
        height: 120px;
    }
}

/* Knauf catalog */
.shop-knauf-catalog {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--bri-border);
}

.shop-knauf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.shop-knauf-item {
    background: var(--bri-bg);
    border: 1px solid var(--bri-border);
    border-radius: var(--bri-radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shop-knauf-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: var(--bri-navy);
}

.shop-knauf-item .shop-knauf-meta {
    font-size: 0.82rem;
    color: var(--bri-muted);
}

/* Cart */
.shop-cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.shop-cart-main {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

.shop-add-products {
    padding-top: 8px;
    border-top: 1px solid var(--bri-border);
}

.shop-section-header--compact {
    margin-bottom: 14px;
}

.shop-section-header--compact h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--bri-navy);
}

.shop-section-header--compact p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--bri-muted);
}

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

.shop-cart-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--bri-muted);
    background: var(--bri-bg);
    border-radius: var(--bri-radius);
    border: 2px dashed var(--bri-border);
}

.shop-cart-empty i { font-size: 2.5rem; display: block; margin-bottom: 12px; opacity: 0.4; }

.shop-cart-item {
    background: var(--bri-bg);
    border: 1px solid var(--bri-border);
    border-radius: var(--bri-radius);
    padding: 16px;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: start;
}

.shop-cart-item-title {
    font-weight: 600;
    color: var(--bri-navy);
    margin: 0 0 4px;
}

.shop-cart-item-desc {
    font-size: 0.85rem;
    color: var(--bri-muted);
    white-space: pre-line;
    margin: 0;
}

.shop-cart-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.shop-cart-qty {
    width: 64px;
    padding: 4px 8px;
    border: 1px solid var(--bri-border);
    border-radius: 4px;
    text-align: center;
}

.shop-cart-item-price {
    font-weight: 700;
    color: var(--bri-navy);
    text-align: right;
    white-space: nowrap;
}

.shop-cart-remove {
    background: none;
    border: none;
    color: #c0392b;
    cursor: pointer;
    padding: 4px;
    font-size: 1.1rem;
}

.shop-cart-sidebar {
    background: var(--bri-bg);
    border: 1px solid var(--bri-border);
    border-radius: var(--bri-radius);
    padding: 24px;
    position: sticky;
    top: 88px;
}

.shop-cart-note {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--bri-border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shop-cart-note strong {
    font-size: 1.05rem;
    color: var(--bri-navy);
}

.shop-cart-note small { font-size: 0.85rem; }

.shop-inquiry-form h3 { color: var(--bri-navy); margin-bottom: 16px; }

/* Modal overrides */
.shop-modal .modal-content {
    border: none;
    border-radius: var(--bri-radius);
}

.shop-modal .modal-header {
    background: var(--bri-navy);
    color: #fff;
    border: none;
}

.shop-modal .modal-header .btn-close {
    filter: invert(1);
}

.shop-modal-footer {
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.shop-config-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bri-navy);
}

.shop-config-summary {
    background: var(--bri-bg);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.88rem;
    white-space: pre-line;
    color: var(--bri-muted);
}

.shop-simple-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: min(52vh, 420px);
    overflow: auto;
    padding-right: 4px;
}

.shop-simple-option {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid var(--bri-border);
    border-radius: 8px;
    background: var(--bri-surface);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.shop-simple-option:hover {
    border-color: rgba(0, 56, 95, 0.35);
}

.shop-simple-option.is-selected {
    border-color: var(--bri-mint);
    background: rgba(0, 210, 142, 0.08);
}

.shop-simple-option input {
    margin-top: 3px;
    flex-shrink: 0;
}

.shop-simple-option-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.shop-simple-option-title {
    font-weight: 700;
    color: var(--bri-navy);
    font-size: 0.95rem;
}

.shop-simple-option-meta {
    color: var(--bri-muted);
    font-size: 0.82rem;
    white-space: pre-line;
    line-height: 1.35;
}

.shop-simple-option-article {
    color: var(--bri-muted);
    font-size: 0.78rem;
    margin-top: 2px;
}

.shop-simple-qty .form-label {
    font-weight: 600;
    color: var(--bri-navy);
}

/* UZ Form styling inside modal */
#shopConfiguratorBody .uz-form-fieldset {
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

#shopConfiguratorBody .uz-form-legend {
    font-weight: 600;
    color: var(--bri-navy);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

#shopConfiguratorBody .uz-form-picks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#shopConfiguratorBody .uz-form-picks--tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
}

#shopConfiguratorBody .uz-form-pick {
    border: 2px solid var(--bri-border);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s, background 0.15s;
    background: var(--bri-surface);
}

#shopConfiguratorBody .uz-form-pick.is-selected {
    border-color: var(--bri-mint);
    background: rgba(0, 210, 142, 0.08);
}

#shopConfiguratorBody .uz-form-pick img {
    max-height: 48px;
    width: auto;
    display: block;
    margin: 0 auto 6px;
}

#shopConfiguratorBody .uz-form-picks--segment .uz-form-pick {
    flex: 1;
    min-width: 80px;
}

/* Shop-Konfigurator: getrennte Produktgruppen */
.shop-config-media {
    margin: 0 0 16px;
    border-radius: var(--bri-radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--bri-border);
}

.shop-config-media img {
    display: block;
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    object-position: center;
    padding: 8px 12px;
}

.shop-config-intro {
    color: var(--bri-muted);
    font-size: 0.92rem;
    margin: 0 0 16px;
    line-height: 1.5;
}

.shop-config-root--beschlag .shop-config-intro {
    border-left: 3px solid var(--bri-mint);
    padding-left: 12px;
}

.shop-config-root--druecker .shop-config-intro {
    border-left: 3px solid var(--bri-navy);
    padding-left: 12px;
}

.shop-config-variants .uz-form-pick {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
}

.shop-config-variants .shop-variant-label {
    font-size: 0.78rem;
    line-height: 1.25;
    text-align: center;
}

.shop-config-variants .uz-form-pick img {
    max-height: 56px;
    width: auto;
}

.shop-config-root--beschlag #shopConfiguratorBody .uz-form-legend:first-of-type,
.shop-config-form .uz-form-fieldset:first-child .uz-form-legend {
    color: var(--bri-navy);
}

/* Zylinder-Konfigurator */
.shop-field-label {
    font-weight: 600;
    color: var(--bri-navy);
    font-size: 0.92rem;
}

.shop-segment {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-segment-btn {
    padding: 8px 14px;
    border: 2px solid var(--bri-border);
    border-radius: 6px;
    background: var(--bri-surface);
    color: var(--bri-navy);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s;
}

.shop-segment-btn.is-active {
    border-color: var(--bri-mint);
    background: rgba(0, 210, 142, 0.1);
}

.shop-stepper-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bri-border);
}

.shop-stepper-label {
    font-weight: 500;
    color: var(--bri-navy);
}

.shop-stepper-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-stepper-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--bri-border);
    border-radius: 6px;
    background: var(--bri-surface);
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--bri-navy);
}

.shop-stepper-value {
    min-width: 72px;
    text-align: center;
    font-weight: 600;
}

.shop-options-collapse summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--bri-navy);
    padding: 8px 0;
}

.shop-config-root--cylinder .shop-config-intro {
    border-left: 3px solid var(--bri-navy);
    padding-left: 12px;
}

/* Success */
.shop-success {
    padding: 80px 20px;
    text-align: center;
}

.shop-success-inner {
    max-width: 560px;
    margin: 0 auto;
}

.shop-success-icon {
    font-size: 4rem;
    color: var(--bri-mint);
    margin-bottom: 20px;
}

.shop-success h1 {
    color: var(--bri-navy);
    font-size: 1.75rem;
    margin: 0 0 12px;
}

.shop-success-id {
    font-size: 1.1rem;
    color: var(--bri-muted);
    margin-bottom: 16px;
}

.shop-success p {
    color: var(--bri-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.shop-success a { color: var(--bri-navy); }

/* Sticky cart summary */
.shop-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: var(--bri-navy);
    color: #fff;
    box-shadow: 0 -8px 28px rgba(0, 40, 64, 0.22);
    border-top: 3px solid var(--bri-mint);
}

.shop-sticky-bar.is-empty {
    display: none;
}

.shop-has-sticky-cart {
    padding-bottom: 84px;
}

.shop-has-sticky-cart .shop-footer {
    padding-bottom: 24px;
}

.shop-sticky-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-sticky-toggle {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    color: inherit;
    text-align: left;
    padding: 4px 0;
    cursor: pointer;
    font-family: inherit;
}

.shop-sticky-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.shop-sticky-bar.is-expanded .shop-sticky-toggle-icon {
    transform: rotate(180deg);
}

.shop-sticky-summary {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.shop-sticky-summary strong {
    font-size: 0.92rem;
    line-height: 1.2;
}

.shop-sticky-preview {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(520px, 48vw);
}

.shop-sticky-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.shop-sticky-total {
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.shop-sticky-cta {
    padding: 8px 14px;
    white-space: nowrap;
}

.shop-sticky-details {
    border-top: 1px solid rgba(255,255,255,0.12);
    max-height: min(48vh, 360px);
    overflow: auto;
    background: var(--bri-navy-dark);
}

.shop-sticky-details-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 16px 14px;
}

.shop-sticky-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.shop-sticky-item:last-child {
    border-bottom: none;
}

.shop-sticky-item-main {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}

.shop-sticky-item-copy {
    min-width: 0;
    flex: 1;
}

.shop-sticky-item-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.shop-sticky-item-qty {
    color: var(--bri-mint);
}

.shop-sticky-item-art {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
}

.shop-sticky-item-desc {
    margin-top: 6px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-sticky-item-desc.is-full {
    white-space: pre-line;
    overflow: visible;
    text-overflow: unset;
}

.shop-sticky-desc-toggle {
    margin-top: 6px;
    background: none;
    border: none;
    padding: 0;
    color: var(--bri-mint);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.shop-sticky-item-side {
    text-align: right;
    flex-shrink: 0;
}

.shop-sticky-item-price {
    font-weight: 700;
    font-size: 0.92rem;
}

.shop-sticky-item-remove {
    margin-top: 6px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    padding: 2px;
    font-size: 1rem;
}

.shop-sticky-item-remove:hover {
    color: #ffb4a8;
}

@media (max-width: 640px) {
    .shop-sticky-bar-inner {
        flex-wrap: wrap;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    }

    .shop-sticky-toggle {
        width: 100%;
        order: 1;
    }

    .shop-sticky-meta {
        width: 100%;
        order: 2;
        justify-content: space-between;
    }

    .shop-sticky-preview {
        max-width: 100%;
    }

    .shop-sticky-details {
        max-height: min(42vh, 300px);
    }
}

/* Footer */
.shop-footer {
    background: var(--bri-navy-dark);
    color: rgba(255,255,255,0.8);
    padding: 32px 20px;
    margin-top: auto;
}

.shop-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.shop-footer-col strong { color: #fff; display: block; margin-bottom: 8px; }
.shop-footer-col p { margin: 0; font-size: 0.9rem; }
.shop-footer-col a { color: var(--bri-mint); text-decoration: none; display: block; margin-bottom: 4px; }
.shop-footer-note p { font-size: 0.85rem; opacity: 0.7; }

/* Flash */
.shop-flash { padding-top: 16px; }
.shop-alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 8px;
}
.shop-alert--error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6cb; }
.shop-alert--ok { background: #e8f8f0; color: #1e7e4a; border: 1px solid #b8e6cc; }
