.shop-is-embedded-frame #page-footer {
            display: none !important;
        }
        .shop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        .tnx-exact-idpk-match {
            border: 3px solid var(--accent-color) !important;
            box-shadow: 0 0 0 1px var(--accent-color);
        }
        .external-forms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
            gap: 20px;
            justify-content: center;
        }
        #external-forms-section {
            margin: 20px 0;
        }
        .shop-banner-slider {
            width: 90%;
            margin: 20px auto 10px;
            max-width: 1200px;
            position: relative;
        }
        .shop-banner-viewport {
            position: relative;
            overflow: hidden;
            /* border: 3px solid var(--bg-color); */
            border-radius: 12px;
            aspect-ratio: 12 / 5;
            height: auto;
            max-height: 500px;
            background: var(--border-color);
            /* box-shadow: 0 0 10px var(--shadow-color); */
        }
        @media (max-width: 768px) {
            .shop-banner-slider {
                width: 95%;
            }
        }
        .shop-banner-image {
            --shop-banner-start: 100%;
            --shop-banner-exit: -100%;
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0;
            transform: translateX(var(--shop-banner-start));
            transition: none;
            pointer-events: none;
            z-index: 1;
        }
        .shop-banner-slider.is-ready .shop-banner-image {
            transition: transform 0.6s ease, opacity 0.6s ease;
        }
        .shop-banner-image.is-active {
            opacity: 1;
            transform: translateX(0);
            z-index: 2;
        }
        .shop-banner-image.is-exiting {
            opacity: 0;
            transform: translateX(var(--shop-banner-exit));
            z-index: 1;
        }
        .shop-banner-nav {
            --shop-banner-nav-size: 36px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: var(--shop-banner-nav-size) !important;
            height: var(--shop-banner-nav-size) !important;
            min-width: var(--shop-banner-nav-size) !important;
            min-height: var(--shop-banner-nav-size) !important;
            max-width: var(--shop-banner-nav-size) !important;
            max-height: var(--shop-banner-nav-size) !important;
            flex: 0 0 var(--shop-banner-nav-size) !important;
            box-sizing: border-box;
            aspect-ratio: 1 / 1;
            padding: 0;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.45);
            border: none;
            color: #fff;
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease, background 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            appearance: none;
            -webkit-appearance: none;
            z-index: 3;
        }
        .shop-banner-nav:hover {
            background: rgba(0, 0, 0, 0.65);
        }
        .shop-banner-nav::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }
        .shop-banner-nav--prev::before {
            border-right: 12px solid #fff;
        }
        .shop-banner-nav--next::before {
            border-left: 12px solid #fff;
        }
        .shop-banner-slider:hover .shop-banner-nav,
        .shop-banner-slider:focus-within .shop-banner-nav {
            opacity: 1;
            pointer-events: auto;
        }
        .shop-banner-nav--prev {
            left: 12px;
        }
        .shop-banner-nav--next {
            right: 12px;
        }
        .shop-banner-dots {
            position: absolute;
            left: 50%;
            bottom: 12px;
            transform: translateX(-50%);
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
            z-index: 3;
        }
        .shop-banner-slider:hover .shop-banner-dots,
        .shop-banner-slider:focus-within .shop-banner-dots {
            opacity: 1;
            pointer-events: auto;
        }
        .shop-banner-dot {
            --shop-banner-dot-size: 10px;
            width: var(--shop-banner-dot-size) !important;
            height: var(--shop-banner-dot-size) !important;
            min-width: var(--shop-banner-dot-size) !important;
            min-height: var(--shop-banner-dot-size) !important;
            max-width: var(--shop-banner-dot-size) !important;
            max-height: var(--shop-banner-dot-size) !important;
            flex: 0 0 var(--shop-banner-dot-size) !important;
            box-sizing: border-box;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(0, 0, 0, 0.4);
            padding: 0;
            appearance: none;
            -webkit-appearance: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease;
        }
        .shop-banner-dot.is-active {
            transform: none;
            opacity: 0.5;
            background: rgba(255, 255, 255, 0.6);
        }
        .shop-banner-slider.is-single .shop-banner-nav,
        .shop-banner-slider.is-single .shop-banner-dots {
            display: none;
        }
        .shop-card {
            position: relative;
            display: block;
            border: 3px solid var(--bg-color);
            border-radius: 12px;
            overflow: hidden;
            background-color: var(--border-color);
            color: var(--text-color);
            text-decoration: none;
            box-shadow: 0 0 10px var(--shadow-color);
            transition: box-shadow 0.3s;
        }
        .shop-card--empty-spacing {
            visibility: hidden;
            border: none;
            box-shadow: none;
            background: transparent;
            pointer-events: none;
        }
        .shop-card--loading {
            min-height: 220px;
            border-style: dashed;
            border-color: color-mix(in srgb, var(--border-color) 65%, transparent);
            background: linear-gradient(90deg,
                color-mix(in srgb, var(--bg-color) 92%, #fff 8%) 0%,
                color-mix(in srgb, var(--bg-color) 84%, #fff 16%) 40%,
                color-mix(in srgb, var(--bg-color) 92%, #fff 8%) 100%);
            background-size: 240% 100%;
            animation: shopCardLoadingPulse 1.15s ease-in-out infinite;
            pointer-events: none;
            box-shadow: none;
        }
        @keyframes shopCardLoadingPulse {
            0% { background-position: 100% 0; opacity: 0.65; }
            50% { opacity: 1; }
            100% { background-position: 0 0; opacity: 0.65; }
        }
        .shop-card:hover {
            box-shadow: 0 0 10px var(--primary-hover);
        }
        .shop-card .img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background-color: var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 9px 9px 0 0;
        }
        .shop-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 9px 9px 0 0;
        }
        .shop-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            background: var(--bg-color);
            border-radius: 9px 9px 0 0;
        }
        .shop-card .img-wrap .video-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }
        .shop-card .img-wrap .video-overlay .play-button {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.55);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .shop-card .img-wrap .video-overlay .play-button::before {
            content: '';
            display: block;
            width: 0;
            height: 0;
            border-top: 7px solid transparent;
            border-bottom: 7px solid transparent;
            border-left: 11px solid #fff;
            margin-left: 2px;
        }
        .shop-card .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(0,0,0,0.3);
            color: white;
            font-weight: bold;
            font-size: 12px;
            text-align: justify;
            text-justify: inter-word;
            padding: 2px 4px;
        }
        .shop-card .info {
            background-color: var(--border-color);
            color: var(--text-color);
            font-size: 11px;
            padding: 4px;
            word-break: break-word;
            text-align: justify;
            text-justify: inter-word;
        }
        .shop-card .info-top {
            background-color: var(--border-color);
            color: var(--text-color);
            font-weight: bold;
            font-size: 12px;
            padding: 4px;
            word-break: break-word;
            text-align: justify;
            text-justify: inter-word;
        }
        .big-card:not(.external-form-detail) .right-section,
        .big-card:not(.external-form-detail) .right-section p,
        .big-card:not(.external-form-detail) .right-section li,
        .big-card:not(.external-form-detail) .right-section .detail-field {
            text-align: justify;
            text-justify: inter-word;
        }
        .cart-icon {
            position: fixed;
            top: 10px;
            right: 10px;
            width: 58px;
            height: 58px;
            font-size: 1.8rem;
            border-radius: 50%;
            border: 3px solid var(--bg-color);
            background-color: var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 0 10px var(--shadow-color);
            cursor: pointer;
            transition: box-shadow 0.3s;
            z-index: 1002;
        }
        .cart-icon:hover,
        .cart-icon.glow {
            box-shadow: 0 0 30px 10px var(--primary-hover);
        }
        .cart-icon-hidden {
            display: none;
        }
        .home-icon {
            position: fixed;
            top: 10px;
            left: 10px;
            width: 58px;
            height: 58px;
            font-size: 1.8rem;
            border-radius: 50%;
            border: 3px solid var(--bg-color);
            background-color: var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 0 10px var(--shadow-color);
            cursor: pointer;
            transition: box-shadow 0.3s;
            z-index: 1002;
        }
        .home-icon:hover {
            box-shadow: 0 0 10px var(--primary-hover);
        }
        .home-icon-hidden {
            display: none;
        }
        #cart-items {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 10px 0 30px;
        }
        .cart-item { margin-bottom:10px; }
        input.cart-qty { text-align:left; width:80px; font-weight:bold; }
        .cart-table {
            width:100%;
            table-layout:fixed;
        }
        .cart-table td:nth-child(1) { width:55%; }
        .cart-table td:nth-child(2) { width:35%; }
        .cart-table td:nth-child(3) { width:10%; text-align:right; }
        .opening-hours {
            text-transform: none;
            font-weight: normal;
        }
        .image-viewer {
            position: relative;
            width: 100%;
            padding-top: 100%;
            overflow: hidden;
            margin-bottom: 12px;
            background: var(--border-color);
            border-radius: 12px;
        }
        .image-viewer img {
            position: absolute;
            top: 50%;
            left: 50%;
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            transform: translate(-50%, -50%);
            object-fit: contain;
            object-position: center;
            display: block;
            border-radius: inherit;
            background: var(--border-color);
        }
        .image-viewer video,
        .image-viewer .video-js {
            position: absolute;
            inset: 0;
            width: 100% !important;
            height: 100% !important;
            max-width: 100%;
            max-height: 100%;
            border-radius: inherit;
            background: var(--bg-color);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 !important;
            overflow: hidden;
        }
        .image-viewer .video-js.vjs-fluid {
            padding-top: 0 !important;
        }
        .image-viewer video,
        .image-viewer .video-js .vjs-tech {
            object-fit: contain;
            object-position: center;
            border-radius: inherit;
            width: 100% !important;
            height: 100% !important;
            max-width: 100%;
            max-height: 100%;
        }
        .image-viewer .video-js .vjs-poster {
            border-radius: inherit;
            background-size: contain;
            background-position: center;
        }
        .thumbs {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-top: 5px;
            flex-wrap: wrap;
        }
        .thumbs .thumb-wrap {
            position: relative;
            width: 60px;
            padding-top: 60px;
            overflow: hidden;
            border-radius: 8px;
            flex: 0 0 60px;
            cursor: pointer;
        }
        .thumbs img.thumb {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            cursor: pointer;
            opacity: 1;
        }
        .thumbs .thumb-wrap video.thumb {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            cursor: pointer;
            opacity: 1;
            background: #000;
        }
        .thumbs .thumb-wrap .video-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }
        .thumbs .thumb-wrap .video-overlay .play-button {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .thumbs .thumb-wrap .video-overlay .play-button::before {
            content: '';
            width: 0;
            height: 0;
            border-top: 7px solid transparent;
            border-bottom: 7px solid transparent;
            border-left: 11px solid rgba(255, 255, 255, 0.9);
            transform: translateX(1px);
        }
        .image-viewer .video-js .vjs-big-play-button {
            position: absolute;
            inset: 0 !important;
            margin: auto !important;
            width: 56px;
            height: 56px;
            border: none;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
            display: flex !important;
            align-items: center;
            justify-content: center;
            padding: 0;
        }
        .image-viewer .video-js .vjs-big-play-button::before,
        .image-viewer .video-js .vjs-big-play-button .vjs-icon-placeholder,
        .image-viewer .video-js .vjs-big-play-button .vjs-icon-placeholder::before {
            display: none !important;
        }
        .image-viewer .video-js .vjs-big-play-button::after {
            content: '';
            position: relative;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 16px solid rgba(255, 255, 255, 0.9);
            transform: translateX(1px);
        }
        .image-viewer .video-js.vjs-has-started .vjs-big-play-button,
        .image-viewer .video-js.vjs-playing .vjs-big-play-button,
        .image-viewer .video-js.vjs-user-inactive.vjs-playing .vjs-big-play-button {
            display: none !important;
        }
        .thumbs img.thumb.active,
        .thumbs video.thumb.active {
            opacity: 0.5;
        }
        .detail-field {
            margin-top: 12px;
        }
        .detail-field strong {
            font-weight: bold;
        }
        .shop-inline-note {
            display: inline;
            margin-left: 0.35rem;
            opacity: 0.8;
            font-size: 0.8em;
            line-height: inherit;
            vertical-align: baseline;
        }
        .workflow-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .workflow-single-field,
        .workflow-expandable-single {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .workflow-group {
            border: 1px solid var(--text-color);
            border-radius: 8px;
            padding: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .workflow-group[data-expandable="true"] {
            border-style: dashed;
        }
        .workflow-group-instances {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .workflow-group-instance {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .workflow-group-instance + .workflow-group-instance {
            border-top: 1px dashed var(--text-color);
            padding-top: 0.75rem;
        }
        .workflow-linked-entry {
            opacity: 1;
            margin-top: 0.35rem;
            text-align: right;
        }
        .workflow-linked-entry .linked-entry-note,
        .workflow-linked-search .linked-entry-note {
            display: flex;
            justify-content: flex-end;
            align-items: baseline;
            gap: 0.35em;
            flex-wrap: wrap;
            width: 100%;
            text-align: right;
        }
        .workflow-linked-entry .linked-entry-note .linked-entry-note-text,
        .workflow-linked-search .linked-entry-note .linked-entry-note-text {
            color: red;
        }
        .workflow-linked-entry a {
            color: var(--link-color);
            text-decoration: none;
        }
        .workflow-linked-entry span {
            color: red;
        }
        .search-results {
            display: none;
            background-color: var(--input-bg);
            padding: 0.75rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            overflow-y: auto;
            min-height: 300px;
            max-height: 600px;
            line-height: 1.4em;
            cursor: default;
            transition: max-height 0.3s ease;
            resize: vertical;
            text-align: left;
        }
        .search-results .search-note {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--text-color, #555);
            margin-bottom: 0.75em;
        }
        .workflow-linked-search {
            margin-top: 0.5rem;
        }
        .workflow-linked-search .search-select {
            color: var(--link-color);
            text-decoration: none;
            cursor: pointer;
        }
        .workflow-linked-search .search-select.search-select-active {
            opacity: 0.8;
        }
        .workflow-linked-search .search-select.tnx-keyboard-nav-link-selected {
            display: inline-block;
            max-width: 100%;
        }
        .search-results.fixed-height {
            height: 200px;
            min-height: 200px;
            max-height: 400px;
        }
        .workflow-form .form-group {
            display: flex;
            flex-direction: column;
        }
        .workflow-form .form-group label {
            margin-bottom: 0.25rem;
            opacity: 0.8;
        }
        .workflow-form textarea.form-control {
            resize: vertical;
        }
        .external-form-attachments {
            margin-top: 10px;
        }
        .workflow-attachments-section {
            margin-top: 1rem;
        }
        .workflow-attachments-heading {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-color);
            letter-spacing: 0.05em;
        }
        .workflow-attachments .attachments-preview {
            max-height: 140px;
        }
        .workflow-drop-area {
            margin-top: 0.5rem;
        }
        .workflow-attachment {
            border: 3px solid var(--border-color);
        }
        .preview-pill {
            display: inline-block;
            padding: 1px 8px;
            border: 1px solid var(--text-color);
            border-radius: 999px;
            font-size: 0.8rem;
        }

        .readonly-boolean-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.6rem;
            height: 1.6rem;
            min-width: 1.6rem;
            position: relative;
            overflow: hidden;
            isolation: isolate;
            border-radius: 999px;
            border: 1px solid var(--text-color);
            box-sizing: border-box;
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1;
            vertical-align: middle;
        }

        .readonly-boolean-pill__symbol {
            position: relative;
            z-index: 1;
            font-weight: 700;
            line-height: 1;
        }

        .readonly-boolean-pill--true {
            background: green;
            color: #fff;
        }

        .readonly-boolean-pill--false {
            background: transparent;
            color: var(--text-color);
        }

        .readonly-boolean-pill--false::before {
            content: '';
            position: absolute;
            inset: 0;
            background: red;
            opacity: 0.2;
            border-radius: inherit;
            z-index: 0;
        }

        .js-markdown-value a {
            text-transform: uppercase;
        }

        .email-attachments {
            margin-top: 0rem;
        }
        .email-drop-area {
            border: 2px dashed var(--border-color);
            border-radius: 8px;
            padding: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: var(--input-bg);
        }
        .email-drop-area:hover:not(.highlight):not(.invalid-drag) {
            border-color: var(--primary-color);
            background-color: var(--bg-color);
        }

        .email-drop-area.highlight {
            border-color: var(--primary-color);
            background-color: var(--bg-color);
        }
        .email-drop-area.invalid-drag,
        .email-drop-area.invalid-drag:hover {
            border-color: var(--border-color);
            background-color: var(--input-bg);
            transform: none;
            box-shadow: none;
        }
        .email-drop-area-content {
            color: var(--text-color);
            opacity: 0.7;
        }
        .attachments-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 4px;
            min-height: 0;
            max-height: 100px;
            overflow-y: auto;
        }
        .attachment-preview {
            position: relative;
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background-color: var(--input-bg);
            border: 3px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .attachment-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        .attachment-preview video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            background: #000;
        }
        .attachment-preview .video-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }
        .attachment-preview .video-overlay .play-button {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .attachment-preview .video-overlay .play-button::before {
            content: '';
            width: 0;
            height: 0;
            border-top: 7px solid transparent;
            border-bottom: 7px solid transparent;
            border-left: 11px solid rgba(255, 255, 255, 0.9);
            transform: translateX(1px);
        }
        .attachment-preview a {
            display: flex;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            text-align: center;
            word-break: break-all;
            font-size: 0.7em;
        }
        .attachment-preview .remove-attachment {
            position: absolute;
            top: 4px;
            right: 4px;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            padding: 0;
            line-height: 1;
        }
        .attachment-preview .remove-attachment:hover {
            background: rgba(0, 0, 0, 0.7);
        }
        .external-form-submit[disabled] {
            display: none;
        }
        .email-attachments .attachments-preview {
            margin-top: 2px;
        }
        .email-attachments .attachments-preview:not(:empty) {
            margin-bottom: 10px;
        }
        .right-section > .detail-field:first-child {
            margin-top: 0;
        }
        .entry-layout {
            display: block;
        }
        .left-section,
        .right-section {
            margin-bottom: 1rem;
            padding-right: 10px;
            scrollbar-gutter: stable;
        }
        @media (min-width: 768px) {
            .entry-layout {
                display: flex;
                gap: 20px;
                align-items: flex-start;
            }
            .entry-layout > .left-section,
            .entry-layout > .right-section {
                flex: 1;
                max-height: 80vh;
                overflow-y: auto;
            }
            .big-card.big-card--single-column {
                max-width: 440px;
                margin-left: auto;
                margin-right: auto;
            }
            .entry-layout.entry-layout-single-column {
                display: block;
            }
            .entry-layout.entry-layout-single-column > .left-section {
                max-height: none;
                overflow-y: visible;
                padding-right: 0;
                margin-bottom: 0;
            }
        }
        #overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            overscroll-behavior: contain;
            background: color-mix(in srgb, var(--bg-color) 72%, transparent);
            backdrop-filter: blur(7px);
            -webkit-backdrop-filter: blur(7px);
            padding: 20px;
            z-index: 1000;
            display: none;
        }
        #overlay-content {
            height: 100%;
            overflow-y: auto;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
        }
        .shop-background-blurred {
            pointer-events: none;
            user-select: none;
        }
        html.shop-overlay-scroll-locked,
        body.shop-overlay-scroll-locked {
            overflow: hidden;
            overflow-anchor: none;
        }
        .price-preview {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        .big-card-header .price-preview {
            margin-bottom: 0;
        }
        .loading-dots {
            display: flex;
            justify-content: center;
            gap: 4px;
            padding: 8px 16px;
            margin-top: 1rem;
        }
        .loading-dots.left {
            justify-content: flex-start;
        }
        .loading-dots span {
            width: 8px;
            height: 8px;
            background-color: var(--primary-color);
            border-radius: 50%;
            animation: bounce 1.4s infinite ease-in-out;
        }
        .loading-dots span:nth-child(1) { animation-delay: -0.32s; }
        .loading-dots span:nth-child(2) { animation-delay: -0.16s; }
        @keyframes bounce {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1.0); }
        }
        #search-wrapper {
            background-color: var(--bg-color);
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        #mode-toggle {
            display: flex;
            gap: 4px;
            cursor: pointer;
            background-color: var(--input-bg);
            border: 2px solid var(--border-color);
            border-radius: 3px;
            padding: 4px;
            align-items: center;
            height: 48px;
            box-sizing: border-box;
            margin: 0;
        }
        #mode-toggle span {
            font-size: 1rem;
            opacity: 0.3;
            transition: opacity 0.2s, background-color 0.2s;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            line-height: 1;
        }
        #mode-toggle span.active {
            opacity: 1;
            background-color: var(--border-color);
            color: var(--bg-color);
        }
        #mode-toggle span:not(.active):hover {
            opacity: 1;
            background-color: var(--border-color);
            color: var(--bg-color);
        }
        #search-input {
            padding: 10px;
            width: 500px;
            height: 48px;
            box-sizing: border-box;
        }
        .control-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            font-size: 1.5rem;
            border-radius: 3px;
            border: 2px solid var(--border-color);
            background-color: var(--input-bg);
            box-shadow: 0 0 10px var(--shadow-color);
            cursor: pointer;
            transition: box-shadow 0.3s;
            box-sizing: border-box;
            margin: 0;
        }
        .control-button:hover {
            background-color: var(--border-color);
        }
        .send-button {
            color: var(--primary-color);
            display: none;
            box-shadow: none;
            transition: none;
        }
        .send-button:hover {
            background-color: var(--border-color);
        }
        .send-button.visible {
            display: flex;
        }
        @media (max-width: 600px) {
            #search-input {
                width: 100%;
            }
        }
        #suggestions {
            margin: 2rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 220px));
            gap: 20px;
            justify-content: center;
            width: 100%;
        }
        #search-summary {
            width: 80%;
            margin: 0 auto 1.5rem;
            text-align: center;
            display: none;
        }
        #search-summary .search-summary-title {
            font-weight: bold;
            font-size: 2rem;
        }
        #search-summary .search-summary-description {
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 0.4rem;
        }
        .suggest-card {
            position: relative;
            display: block;
            border: 3px solid var(--bg-color);
            border-radius: 12px;
            overflow: hidden;
            background-color: var(--border-color);
            color: var(--text-color);
            text-decoration: none;
            box-shadow: 0 0 10px var(--shadow-color);
            transition: box-shadow 0.3s;
        }
        .suggest-card:hover {
            box-shadow: 0 0 10px var(--primary-hover);
        }
        .suggest-card .deco {
            position: relative;
            width: 100%;
            padding-top: 100%;
            border-bottom: 3px solid var(--bg-color);
            border-radius: 12px 12px 0 0;
            background-size: cover;
            background-position: center;
        }
        .suggest-card .label {
            padding: 8px;
            text-align: center;
            font-weight: bold;
            font-size: 1rem;
            line-height: 1.2;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            word-break: break-word;
        }
        .suggest-card .label.label--compact {
            font-size: 0.9rem;
        }
        .suggest-card .label.label--dense {
            font-size: 0.8rem;
        }
