:root {
    --ink: #f8ead0;
    --muted: #c7ad86;
    --paper: #130f0b;
    --paper-strong: #20160f;
    --line: rgba(220, 170, 83, 0.45);
    --gold: #d8a64b;
    --gold-soft: #ffe1a0;
    --wine: #ED1F25;
    --green: #22392c;
    --wood: #8a552d;
    --wood-dark: #3b2114;
    --metal: #0b0b0a;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
    --font-body: Inter, Arial, sans-serif;
    --font-heading: "Montserrat", sans-serif;
}

.heading-toms,
.toms-part {
    font-family: var(--font-heading);
    font-weight: 800;
    /* Montserrat ExtraBold */
}

.heading-wine,
.wine-part {
    font-family: var(--font-heading);
    font-weight: 500;
    /* Montserrat Medium */
}

* {
    box-sizing: border-box;
}

html {
    -webkit-user-select: none;
    user-select: none;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 50% -10%, rgba(255, 208, 128, 0.18), transparent 32rem),
        radial-gradient(circle at 8% 18%, rgba(124, 31, 45, 0.22), transparent 20rem),
        linear-gradient(145deg, #070605 0%, #17110c 42%, #090807 100%);
    font-family: var(--font-body);
    line-height: 1.45;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.catalogue-body {
    min-height: 100vh;
}

.catalogue-body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
}

.catalogue-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px clamp(14px, 3vw, 34px);
    background: rgba(9, 8, 7, 0.88);
    border-bottom: 1px solid rgba(216, 166, 75, 0.36);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
}

.catalogue-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--gold-soft);
    font-weight: 800;
}

.catalogue-brand img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border: 1px solid rgba(216, 166, 75, 0.75);
    border-radius: 6px;
    box-shadow: 0 0 18px rgba(216, 166, 75, 0.28);
}

.admin-link {
    border: 1px solid rgba(216, 166, 75, 0.72);
    border-radius: 4px;
    padding: 8px 14px;
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 800;
    background: rgba(124, 31, 45, 0.22);
}

.catalogue-shell {
    width: min(1120px, calc(100% - 24px));
    margin: 24px auto 42px;
}

.catalogue-cover,
.catalogue-page {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    margin-bottom: 22px;
    background:
        linear-gradient(90deg, rgba(255, 232, 177, 0.07), transparent 18%, transparent 82%, rgba(255, 232, 177, 0.06)),
        linear-gradient(135deg, #100d0b 0%, #1e1510 48%, #0c0b0a 100%);
    border: 1px solid rgba(216, 166, 75, 0.42);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.catalogue-cover>*,
.catalogue-page>* {
    position: relative;
    z-index: 2;
}

.catalogue-cover {
    min-height: 360px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    padding: 48px 24px;
    text-align: center;
    border-top: 0;
}

.catalogue-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 34%, rgba(216, 166, 75, 0.28), transparent 18rem),
        linear-gradient(135deg, rgba(124, 31, 45, 0.28), transparent 46%);
}

.catalogue-cover::after {
    content: "TOM'S WINE";
    position: absolute;
    inset: auto -40px 16px auto;
    z-index: 1;
    color: rgba(255, 225, 160, 0.06);
    font-family: var(--font-heading);
    font-size: clamp(54px, 9vw, 120px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.cover-logo {
    width: 155px;
    height: 124px;
    object-fit: cover;

}

.cover-mark {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.catalogue-cover h1 {
    margin: 0;
    color: #fff7e4;
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 0;
    text-shadow: 0 0 28px rgba(216, 166, 75, 0.2);
}

.catalogue-cover p {
    margin: 8px 0 0;
    color: var(--gold-soft);
    font-weight: 800;
    text-transform: uppercase;
}

.cover-meta {
    display: grid;
    gap: 6px;
    max-width: 720px;
    color: var(--muted);
    font-size: 13px;
}

.store-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    margin-top: 6px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: #EC1F24;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 14px rgba(236, 31, 36, 0.35);
    transition: all 0.25s ease;
}

.trust-badge:hover {
    background: #d6181d;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.badge-icon {
    font-size: 14px;
}

.gmaps-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
    color: var(--gold-soft);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.gmaps-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.cover-disclaimer {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #ED1F25;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #ffffff;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
    width: min(480px, calc(100% - 24px));
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cover-disclaimer strong {
    color: #ffffff;
}

.catalogue-page {
    padding: clamp(14px, 2.5vw, 28px);
}

.catalogue-page::before {
    content: "TOM'S WINE";
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 700;
    color: rgba(255, 225, 160, 0.15);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: rotate(-28deg);
    text-shadow: 0 0 30px rgba(255, 210, 100, 0.2);
}

.catalogue-page::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 9;
    pointer-events: none;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='100'><text x='60' y='28' text-anchor='middle' dominant-baseline='middle' font-family='Montserrat, Arial, sans-serif' font-size='12' font-weight='700' fill='rgba(255,225,140,0.22)' transform='rotate(-22 60 28)' letter-spacing='1.5'>TOM%27S WINE</text><text x='180' y='78' text-anchor='middle' dominant-baseline='middle' font-family='Montserrat, Arial, sans-serif' font-size='12' font-weight='700' fill='rgba(255,225,140,0.22)' transform='rotate(-22 180 78)' letter-spacing='1.5'>TOM%27S WINE</text></svg>");
    background-repeat: repeat;
    background-size: 240px 100px;
}

.watermark,
.wm-tile {
    display: none;
}

.page-heading {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 14px;
    margin-bottom: 16px;
    background: #ED1F25;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.page-heading strong,
.page-heading span,
.page-heading .heading-toms,
.page-heading .heading-wine {
    color: #ffffff !important;
}

.category-block {
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid rgba(216, 166, 75, 0.38);
    border-radius: 6px;
    background:
        linear-gradient(90deg, rgba(138, 85, 45, 0.18), transparent 22%, transparent 78%, rgba(138, 85, 45, 0.16)),
        #120f0c;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.category-block h2 {
    margin: 0;
    padding: 10px 14px;
    background: #ED1F25;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.catalogue-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background:
        linear-gradient(90deg, rgba(255, 225, 160, 0.05), transparent 20%, transparent 80%, rgba(255, 225, 160, 0.04)),
        rgba(13, 11, 9, 0.92);
}

.catalogue-table th,
.catalogue-table td {
    border: 1px solid rgba(216, 166, 75, 0.25);
    padding: 7px 9px;
    text-align: left;
    vertical-align: middle;
}

.catalogue-table th {
    background: rgba(216, 166, 75, 0.16);
    color: var(--gold-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.catalogue-table td {
    color: #f7ead0;
    font-size: 12px;
    font-weight: 600;
}

.catalogue-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.025);
}

.catalogue-table tbody tr:hover {
    background: rgba(216, 166, 75, 0.09);
}

.col-serial {
    width: 34px;
    text-align: center !important;
    color: var(--muted) !important;
}

.col-category {
    width: 180px;
    color: var(--muted) !important;
}

.col-price {
    width: 96px;
    text-align: right !important;
    white-space: nowrap;
    color: var(--gold-soft) !important;
    font-weight: 800 !important;
}

.col-mrp {
    width: 82px;
    color: #9c8c77 !important;
    font-size: 0.86em;
    font-weight: 600 !important;
    text-align: right !important;
    white-space: nowrap;
}

.product-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.product-cell img {
    width: 28px;
    height: 38px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.45));
}

.empty-state {
    padding: 32px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed rgba(216, 166, 75, 0.48);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.18);
}

.catalogue-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 26px 16px 36px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    border-top: 1px solid rgba(216, 166, 75, 0.25);
}

.footer-trust-notes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 14px;
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 700;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
    opacity: 0.85;
}

.trust-divider {
    color: var(--gold);
    opacity: 0.6;
}

.btn-gold,
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid var(--gold);
    cursor: pointer;
}

.btn-gold {
    background: var(--gold);
    color: #100d0b;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
}

.form-control {
    width: 100%;
    border: 1px solid rgba(216, 166, 75, 0.45);
    border-radius: 4px;
    padding: 10px 12px;
    background: #fffaf1;
    color: #17130f;
    font: inherit;
}

textarea.form-control {
    min-height: 96px;
    resize: vertical;
}

.screenshot-warning {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    text-align: center;
    color: #fff7e4;
    background: rgba(11, 9, 7, 0.97);
}

.screenshot-warning h2 {
    margin: 0;
    color: var(--gold-soft);
    font-family: var(--font-heading);
    font-size: 26px;
}

.screenshot-warning p {
    max-width: 380px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.screenshot-warning button {
    -webkit-user-select: auto;
    user-select: auto;
    margin-top: 8px;
    border: 1px solid rgba(216, 166, 75, 0.72);
    border-radius: 4px;
    padding: 12px 28px;
    color: #100d0b;
    background: var(--gold);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 768px) {
    .catalogue-shell {
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }

    .catalogue-cover,
    .catalogue-page {
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        margin-bottom: 12px;
    }

    .catalogue-page::before {
        font-size: clamp(20px, 4.5vw, 32px);
        opacity: 0.12;
    }

    .catalogue-page::after {
        background-size: 200px 83px;
    }

    .catalogue-cover {
        min-height: unset;
        padding: 34px 20px;
        gap: 14px;
    }

    .catalogue-brand span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 180px;
        display: inline-block;
    }

    .page-heading {
        flex-direction: column;
        gap: 2px;
        font-size: 12px;
    }

    .catalogue-table {
        table-layout: fixed;
    }

    .catalogue-table th,
    .catalogue-table td {
        padding: 7px 9px;
        font-size: 12px;
    }

    .col-serial {
        width: 34px;
    }

    .col-category {
        display: none;
    }

    .col-price {
        width: 96px;
    }

    .col-mrp {
        width: 82px;
    }
}

@media (max-width: 480px) {
    .catalogue-topbar {
        padding: 8px 12px;
        gap: 10px;
    }

    .catalogue-brand {
        gap: 8px;
        min-width: 0;
        flex: 1;
    }

    .catalogue-brand img {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .catalogue-brand span {
        font-size: 13px;
        max-width: 130px;
    }

    .admin-link {
        padding: 6px 10px;
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .catalogue-cover {
        padding: 30px 16px;
        gap: 12px;
    }

    .cover-logo {
        width: 105px;
        height: 86px;
    }

    .catalogue-cover h1 {
        font-size: clamp(26px, 7vw, 38px);
    }

    .catalogue-cover p {
        font-size: 11px;
    }

    .cover-mark {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .cover-meta {
        font-size: 11px;
    }

    .catalogue-page {
        padding: 8px 4px;
    }

    .catalogue-page::before {
        display: none;
    }

    .catalogue-page::after {
        background-size: 170px 71px;
    }

    .page-heading {
        padding: 8px 10px;
        font-size: 11px;
        gap: 1px;
        margin-bottom: 10px;
    }

    .category-block {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-top: 10px;
        border-radius: 4px;
    }

    .category-block h2 {
        font-size: 15px;
        padding: 7px 10px;
    }

    .catalogue-table {
        table-layout: fixed;
        width: 100%;
        min-width: 0;
        border-collapse: collapse;
    }

    .catalogue-table th,
    .catalogue-table td {
        padding: 7px 9px;
        font-size: 12px;
        vertical-align: middle;
    }

    /* Sr — very narrow */
    .col-serial {
        width: 34px;
        text-align: center !important;
        font-size: 12px;
    }

    /* Category — hidden (shown as group heading) */
    .col-category {
        display: none;
    }

    /* MRP — narrow */
    .col-mrp {
        width: 82px;
    }

    /* Best Price */
    .col-price {
        width: 96px;
    }

    /* Product thumbnail minimal */
    .product-cell {
        gap: 4px;
    }

    .product-cell img {
        width: 18px;
        height: 26px;
    }

    .catalogue-footer {
        padding: 16px 12px 28px;
        font-size: 11px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

.disclaimer-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0 40px;
}

.cover-disclaimer {
    width: min(480px, 90%);
    text-align: center;
}

@media (max-width: 390px) {
    .catalogue-brand span {
        max-width: 100px;
        font-size: 12px;
    }

    .admin-link {
        font-size: 10px;
        padding: 5px 8px;
    }

    .catalogue-cover {
        padding: 24px 12px;
    }

    .cover-logo {
        width: 72px;
        height: 72px;
    }

    .catalogue-cover h1 {
        font-size: clamp(22px, 6.5vw, 30px);
    }

    .catalogue-page {
        padding: 8px;
    }

    .category-block h2 {
        font-size: 13px;
        padding: 6px 8px;
    }
}

@media (max-width: 360px) {
    .catalogue-topbar {
        padding: 7px 10px;
    }

    .catalogue-brand img {
        width: 30px;
        height: 30px;
    }

    .catalogue-brand span {
        max-width: 80px;
        font-size: 11px;
    }

    .catalogue-cover h1 {
        font-size: clamp(20px, 6vw, 26px);
    }

    .cover-logo {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 320px) {
    .catalogue-brand span {
        display: none;
    }

    .admin-link span,
    .admin-link {
        font-size: 9px;
        padding: 4px 6px;
    }

    .catalogue-cover h1 {
        font-size: 20px;
    }
}

/* ============================================================
   Catalog Search Bar & Auto-Suggestions Component
   ============================================================ */
.search-container {
    position: sticky;
    top: 0;
    top: env(safe-area-inset-top, 0px);
    z-index: 999;
    width: 100%;
    background: rgba(12, 9, 6, 0.98);
    border-bottom: 1px solid rgba(216, 166, 75, 0.35);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 16px;
    margin: 0 0 24px 0;
}

.search-bar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
    background: rgba(22, 16, 11, 0.95);
    border: 1px solid rgba(216, 166, 75, 0.5);
    border-radius: 50px;
    padding: 6px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 225, 160, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-bar-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(216, 166, 75, 0.25), 0 12px 40px rgba(0, 0, 0, 0.6);
    background: rgba(26, 19, 14, 0.95);
}

.search-icon {
    font-size: 18px;
    color: var(--gold);
    margin-right: 12px;
    user-select: none;
}

.search-input-field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    /* MUST be 16px+ to prevent iOS auto-zoom on tap */
    font-weight: 500;
    padding: 10px 0;
}

.search-input-field::placeholder {
    color: var(--muted);
    opacity: 0.8;
}

.search-clear-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(220, 170, 83, 0.15);
    color: var(--gold-soft);
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.search-clear-btn:hover {
    background: rgba(237, 31, 37, 0.4);
    color: #fff;
}

/* Suggestions Dropdown Modal */
.search-suggestions-box {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    max-height: min(380px, 40vh);
    overflow-y: auto;
    background: rgba(18, 13, 9, 0.96);
    border: 1px solid rgba(216, 166, 75, 0.4);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    z-index: 100;
    padding: 8px 0;
}

.suggestion-group-title {
    padding: 8px 16px 4px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold);
    border-bottom: 1px solid rgba(220, 170, 83, 0.15);
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.suggestion-item:hover,
.suggestion-item.selected {
    background: rgba(216, 166, 75, 0.15);
}

.suggestion-icon {
    font-size: 16px;
}

.suggestion-details {
    display: flex;
    flex-direction: column;
}

.suggestion-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.suggestion-meta {
    color: var(--muted);
    font-size: 12px;
}

/* Stats Banner & Highlights */
.search-stats-banner {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: rgba(216, 166, 75, 0.12);
    border: 1px solid rgba(216, 166, 75, 0.3);
    border-radius: 12px;
    padding: 10px 18px;
    margin: 16px 16px 0 16px;
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 600;
}

.reset-search-btn {
    background: rgba(220, 170, 83, 0.2);
    border: 1px solid var(--gold);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s;
}

.reset-search-btn:hover {
    background: var(--gold);
    color: #000;
}

mark.search-highlight {
    background: rgba(216, 166, 75, 0.35);
    color: #fff;
    font-weight: 700;
    padding: 0 3px;
    border-radius: 3px;
}

/* No Results & Recommendations */
.search-no-results {
    display: none;
    margin: 30px auto;
    padding: 0 16px;
    max-width: 750px;
}

.no-results-card {
    background: rgba(24, 17, 12, 0.9);
    border: 1px solid rgba(216, 166, 75, 0.3);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.no-results-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.no-results-card h3 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 12px 0;
}

.did-you-mean {
    margin: 12px 0 18px 0;
    font-size: 15px;
    color: var(--gold-soft);
}

.suggestion-link-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    font-size: 15px;
}

.no-results-hint {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.recommendation-card {
    background: rgba(35, 24, 16, 0.8);
    border: 1px solid rgba(220, 170, 83, 0.2);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.2s, border-color 0.2s;
}

.recommendation-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    background: rgba(48, 33, 22, 0.9);
}

.rec-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.rec-cat {
    color: var(--muted);
    font-size: 11px;
}

.rec-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 12px;
    margin-top: 6px;
}

.row-flash-highlight {
    animation: flashGoldRow 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes flashGoldRow {
    0% {
        background-color: rgba(216, 166, 75, 0.45) !important;
        outline: 2px solid var(--gold);
        box-shadow: 0 0 20px rgba(216, 166, 75, 0.6);
    }

    50% {
        background-color: rgba(216, 166, 75, 0.3) !important;
    }

    100% {
        background-color: transparent;
        outline: none;
        box-shadow: none;
    }
}

@media print {

    .catalogue-topbar,
    .catalogue-footer,
    .admin-link {
        display: none !important;
    }

    body {
        background: white;
        color: #17130f;
    }

    .catalogue-shell {
        width: 100%;
        margin: 0;
    }

    .catalogue-cover,
    .catalogue-page {
        box-shadow: none;
        border-radius: 0;
        page-break-after: always;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}