/* ─── Design tokens — light theme ──────────────────────────────────── */
:root {
    --bg:           #faf9f7;
    --bg-alt:       #f3f1ed;
    --bg-card:      #ffffff;
    --border:       #e0dbd3;
    --text:         #2c2825;
    --text-muted:   #7a7168;
    --accent:       #8b4513;
    --accent-hover: #6d350f;
    --accent-light: #f5ece5;
    --nav-bg:       #1a1512;
    --nav-text:     #f0ebe2;
    --nav-border:   rgba(255,255,255,0.08);
    --shadow:       0 2px 12px rgba(0,0,0,0.07);
    --shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
    --radius:       6px;
    --radius-lg:    12px;
}

html[data-theme="dark"] {
    --bg:           #1a1512;
    --bg-alt:       #231f1b;
    --bg-card:      #2a2520;
    --border:       #3d3830;
    --text:         #f0ece4;
    --text-muted:   #9e968a;
    --accent:       #c97a3c;
    --accent-hover: #e08940;
    --accent-light: #2e2018;
    --nav-bg:       #0f0d0a;
    --nav-text:     #f0ebe2;
    --nav-border:   rgba(255,255,255,0.06);
    --shadow:       0 2px 12px rgba(0,0,0,0.3);
    --shadow-hover: 0 6px 24px rgba(0,0,0,0.45);
}

/* ─── Base reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    margin: 0;
    padding: 0;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text);
    line-height: 1.25;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* W3.CSS base overrides */
.w3-content { background: transparent !important; }

/* ─── Shell layout ──────────────────────────────────────────────────── */
.ut3-shell { flex: 1; display: flex; min-height: 100vh; }

/* ─── Sidebar nav ───────────────────────────────────────────────────── */
.ut3-snav {
    width: 220px;
    flex-shrink: 0;
    background: var(--nav-bg);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    z-index: 200;
    transition: transform 0.22s ease;
    overflow-y: auto;
    box-shadow: 2px 0 12px rgba(0,0,0,.15);
}

.ut3-snav__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 20px 20px 16px;
    color: var(--nav-text);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--nav-border);
    flex-shrink: 0;
}
.ut3-snav__brand:hover { color: var(--accent); text-decoration: none; }
.ut3-snav__brand img { width: 26px; height: 26px; border-radius: 50%; }

.ut3-snav__body { padding: 10px 0; flex: 1; display: flex; flex-direction: column; }

.ut3-snav__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: rgba(240,235,226,.7);
    text-decoration: none;
    font-size: 13.5px;
    transition: background 0.22s, color 0.22s;
    border-left: 3px solid transparent;
    border-top: none; border-right: none; border-bottom: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
}
.ut3-snav__item i { width: 16px; text-align: center; opacity: .75; font-size: 13px; flex-shrink: 0; }
.ut3-snav__item:hover { background: rgba(255,255,255,.06); color: var(--nav-text); text-decoration: none; }
.ut3-snav__item.active {
    background: rgba(139,69,19,.18);
    color: var(--nav-text);
    border-left-color: var(--accent);
    font-weight: 600;
}
.ut3-snav__item.active i { opacity: 1; }
.ut3-snav__divider { border: none; border-top: 1px solid var(--nav-border); margin: 8px 0; }

.ut3-snav__badge {
    margin-left: auto;
    min-width: 18px; height: 18px; padding: 0 4px;
    background: #c0392b; color: #fff;
    font-size: 0.6rem; font-family: system-ui, sans-serif;
    font-weight: 700; line-height: 18px;
    text-align: center; border-radius: 9px;
    flex-shrink: 0;
}

/* ─── Main content area ─────────────────────────────────────────────── */
.ut3-main {
    flex: 1;
    margin-left: 220px;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.ut3-main > main { flex: 1; }

/* ─── Mobile topbar ─────────────────────────────────────────────────── */
.ut3-topbar {
    display: none;
    align-items: center;
    gap: 12px;
    background: var(--nav-bg);
    padding: 10px 14px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
    border-bottom: 1px solid var(--nav-border);
}
.ut3-topbar__brand {
    flex: 1;
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--nav-text);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.9rem; font-weight: 600;
    text-decoration: none;
}
.ut3-topbar__brand:hover { color: var(--accent); text-decoration: none; }
.ut3-topbar__icons { display: flex; align-items: center; gap: 2px; }
.ut3-topbar__icon {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    color: var(--nav-text); border: none; background: transparent;
    border-radius: var(--radius); cursor: pointer; font-size: 0.9rem;
    text-decoration: none; opacity: 0.8;
    transition: opacity 0.15s, background 0.15s;
}
.ut3-topbar__icon:hover { opacity: 1; background: rgba(255,255,255,.12); color: var(--nav-text); text-decoration: none; }

/* ─── Hamburger ─────────────────────────────────────────────────────── */
.ut3-hamburger {
    background: none; border: none; cursor: pointer;
    padding: 4px; display: flex; flex-direction: column; gap: 5px;
    flex-shrink: 0;
}
.ut3-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--nav-text); border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}
.ut3-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ut3-hamburger.open span:nth-child(2) { opacity: 0; }
.ut3-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile overlay ────────────────────────────────────────────────── */
.ut3-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.45); z-index: 150;
}
.ut3-overlay.open { display: block; }

/* ─── Cart badge ────────────────────────────────────────────────────── */
.ut3-badge {
    position: absolute; top: 2px; right: 2px;
    min-width: 15px; height: 15px; padding: 0 3px;
    background: #c0392b; color: #fff;
    font-size: 0.6rem; font-family: system-ui, sans-serif;
    font-weight: 700; line-height: 15px;
    text-align: center; border-radius: 8px;
}

@media (max-width: 860px) {
    .ut3-topbar { display: flex; }
    .ut3-snav { transform: translateX(-220px); }
    .ut3-snav.open { transform: translateX(0); }
    .ut3-main { margin-left: 0; }
}

/* ─── Layout ────────────────────────────────────────────────────────── */
.ut3-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.ut3-section { padding: 2.5rem 0; }

/* ─── Hero ──────────────────────────────────────────────────────────── */
.ut3-hero {
    background: var(--nav-bg);
    color: var(--nav-text);
    text-align: center;
    padding: 5rem 1.5rem 4.5rem;
}
.ut3-hero h1 {
    color: var(--nav-text);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    margin: 0.75rem 0 0.25rem;
}
.ut3-hero p {
    color: rgba(240,235,226,0.72);
    font-size: 1.05rem;
    margin: 0.3rem 0 0;
}
.ut3-hero__logo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    display: block;
    margin: 0 auto;
}
.ut3-hero__sub {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(240,235,226,0.48);
    margin-top: 0.2rem;
    font-family: Georgia, serif;
    font-style: italic;
}
.ut3-hero__actions { margin-top: 2.25rem; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ─── Slider ─────────────────────────────────────────────────────────── */
.ut3-slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #111;
    user-select: none;
    border-radius: var(--radius-lg);
}
@media (max-width: 900px) { .ut3-slider { height: 340px; } }
@media (max-width: 560px) { .ut3-slider { height: 220px; } }
/* fade (default) */
.ut3-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}
.ut3-slider__slide.active {
    opacity: 1;
    pointer-events: auto;
}
/* slide — JS drives transforms, just ensure opacity stays 1 */
.ut3-slider[data-transition="slide"] .ut3-slider__slide {
    opacity: 1;
    transition: none;
}
/* zoom */
.ut3-slider[data-transition="zoom"] .ut3-slider__slide {
    opacity: 0;
    transform: scale(1.07);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.ut3-slider[data-transition="zoom"] .ut3-slider__slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.ut3-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ut3-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.38);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
    line-height: 1;
}
.ut3-slider__btn:hover { background: rgba(0,0,0,0.65); }
.ut3-slider__btn--prev { left: 14px; }
.ut3-slider__btn--next { right: 14px; }
.ut3-slider__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 2;
}
.ut3-slider__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.ut3-slider__dot.active {
    background: #fff;
    transform: scale(1.25);
}

/* ─── Buttons ───────────────────────────────────────────────────────── */
.ut3-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    padding: 0.6em 1.5em;
    font-family: inherit;
    font-size: 0.9rem;
    line-height: 1;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
    text-decoration: none;
    white-space: nowrap;
}
.ut3-btn:hover { text-decoration: none; }

.ut3-btn--primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff !important;
}
.ut3-btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}

.ut3-btn--ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}
.ut3-btn--ghost:hover { background: var(--bg-alt); color: var(--text); }

.ut3-btn--light {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
    color: #fff !important;
}
.ut3-btn--light:hover { background: rgba(255,255,255,0.24); color: #fff; }

.ut3-btn--grey {
    background: var(--bg-alt);
    border-color: var(--border);
    color: var(--text);
}
.ut3-btn--grey:hover { background: var(--border); color: var(--text); }

/* ─── Inputs ────────────────────────────────────────────────────────── */
.ut3-input {
    display: block;
    width: 100%;
    padding: 0.6em 0.85em;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.15s, box-shadow 0.15s;
    margin-bottom: 0.85rem;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}
.ut3-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139,69,19,0.15);
}
.ut3-input::placeholder { color: var(--text-muted); }

/* ─── Cards ─────────────────────────────────────────────────────────── */
.ut3-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}
.ut3-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.ut3-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.ut3-card__img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    color: var(--text-muted);
    font-size: 3rem;
}
.ut3-card__body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ut3-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.2rem;
}
.ut3-card__subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0 0 0.45rem;
}
.ut3-card__meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0.12rem 0;
}
.ut3-card__price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
    padding-top: 0.6rem;
}
.ut3-card--oos {
    opacity: 0.72;
}
.ut3-card--oos:hover {
    transform: none;
    box-shadow: var(--shadow);
}
.ut3-card {
    position: relative;
}
.ut3-card__oos-badge,
.ut3-card__low-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
}
.ut3-card__oos-badge { background: rgba(180,30,30,0.88); }
.ut3-card__low-badge { background: rgba(180,100,0,0.88); }
.ut3-oos-msg {
    color: #b41e1e;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0.5rem 0 0;
}
.ut3-low-msg {
    color: #b46000;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0.5rem 0 0.5rem;
}

/* ─── Record grid ───────────────────────────────────────────────────── */
.ut3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0 2rem;
}

/* ─── Shop layout ───────────────────────────────────────────────────── */
.ut3-shop {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 1.5rem 0 3rem;
}

.ut3-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    position: sticky;
    top: 74px;
    box-shadow: var(--shadow);
}
.ut3-sidebar h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin: 1.1rem 0 0.45rem;
    font-family: Georgia, serif;
    font-style: normal;
}
.ut3-sidebar h4:first-child { margin-top: 0; }

@media (max-width: 740px) {
    .ut3-shop { grid-template-columns: 1fr; }
    .ut3-sidebar { position: static; }
    .ut3-sidebar__filters { display: none; }
}

/* ─── Record detail ─────────────────────────────────────────────────── */
.ut3-detail {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    padding: 2rem 0;
    align-items: start;
}
.ut3-detail__cover {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}
.ut3-detail__cover img { width: 100%; display: block; }
.ut3-detail__cover-placeholder {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    color: var(--text-muted);
    font-size: 4rem;
    border-radius: var(--radius-lg);
}
.ut3-detail h2 { margin-top: 0; font-size: 1.7rem; }
.ut3-detail__sub { color: var(--text-muted); margin: 0 0 0.75rem; font-style: italic; }
.ut3-detail__meta { font-size: 0.88rem; color: var(--text-muted); margin: 0.3rem 0; }
.ut3-detail__desc {
    background: var(--bg-alt);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
    color: var(--text-muted);
    font-style: italic;
}
.ut3-detail__price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--accent);
    margin: 1.25rem 0 0.5rem;
}
.ut3-detail__add {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}
.ut3-qty {
    width: 72px;
    text-align: center;
    padding: 0.55em 0.5em;
}

@media (max-width: 740px) {
    .ut3-detail { grid-template-columns: 1fr; }
}

/* ─── Tags ──────────────────────────────────────────────────────────── */
.ut3-tag {
    display: inline-block;
    padding: 0.22em 0.7em;
    font-size: 0.74rem;
    border-radius: 2em;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text-muted);
    margin: 0 0.2em 0.3em 0;
}
.ut3-tag--accent {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
}

/* ─── Table ─────────────────────────────────────────────────────────── */
.ut3-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 1rem 0;
}
.ut3-table th {
    background: var(--bg-alt);
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.7rem 1rem;
    border-bottom: 2px solid var(--border);
    text-align: left;
    font-weight: 600;
}
.ut3-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}
.ut3-table tr:last-child td { border-bottom: none; }
.ut3-table tbody tr:hover td { background: var(--bg-alt); }
.ut3-table tfoot td {
    background: var(--bg-alt);
    font-weight: 600;
    border-top: 2px solid var(--border);
}

/* ─── Panel / info ──────────────────────────────────────────────────── */
.ut3-panel {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid var(--border);
}

.ut3-bg-alt { background: var(--bg-alt) !important; }
.ut3-bg-nav { background: var(--nav-bg) !important; }

/* ─── Section heading ───────────────────────────────────────────────── */
.ut3-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: var(--text);
    margin: 0 0 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ut3-heading .fa-solid,
.ut3-heading .fa-regular { color: var(--accent); font-size: 0.75em; }
.ut3-subheading { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 1.5rem; }

/* ─── Artist ────────────────────────────────────────────────────────── */
.ut3-artist-photo {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.ut3-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    padding: 2rem 0;
    align-items: start;
}
@media (max-width: 740px) {
    .ut3-profile { grid-template-columns: 1fr; }
}

/* ─── Cart ──────────────────────────────────────────────────────────── */
.ut3-cart { padding: 2rem 0 3rem; }
.ut3-cart__empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-muted);
}
.ut3-cart__empty i { font-size: 3rem; display: block; margin-bottom: 1rem; color: var(--border); }
.ut3-cart__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

/* ─── Footer ────────────────────────────────────────────────────────── */
.ut3-footer {
    background: var(--nav-bg);
    color: rgba(240,235,226,0.7);
    padding: 3rem 1.25rem 2rem;
    margin-top: 4rem;
    font-size: 0.85rem;
}
.ut3-footer p { margin: 0 0 0.5rem; line-height: 1.6; }
.ut3-footer a { color: rgba(240,235,226,0.65); }
.ut3-footer a:hover { color: var(--nav-text); text-decoration: none; }
.ut3-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
}
.ut3-footer__col { display: flex; flex-direction: column; }
.ut3-footer__heading {
    font-family: Georgia, serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.4;
    margin: 0 0 0.9rem;
}
.ut3-footer__logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    opacity: 0.55;
    transition: opacity 0.2s;
    cursor: pointer;
    object-fit: cover;
}
.ut3-footer__logo:hover { opacity: 1; }
@media (max-width: 740px) {
    .ut3-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── Cookie banner ─────────────────────────────────────────────────── */
.ut3-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    color: rgba(240,235,226,0.8);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    font-size: 0.86rem;
    border-top: 1px solid var(--nav-border);
}
.ut3-cookie a { color: rgba(240,235,226,0.7); text-decoration: underline; }
.ut3-cookie__ok { margin-left: auto; flex-shrink: 0; }

/* ─── Notification ──────────────────────────────────────────────────── */
.ut3-notif {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9999;
    max-width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* ─── Cart toast ────────────────────────────────────────────────────── */
.ut3-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    font-size: 0.95rem;
    font-family: inherit;
    white-space: nowrap;
    z-index: 10000;
    pointer-events: none;
    animation: ut3-toast-in 0.28s ease both, ut3-toast-out 0.35s ease 2.4s both;
}
@keyframes ut3-toast-in {
    from { opacity: 0; transform: translateX(-50%) translateY(0.8rem); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes ut3-toast-out {
    to   { opacity: 0; transform: translateX(-50%) translateY(0.5rem); }
}

/* ─── Share buttons ─────────────────────────────────────────────────── */
.ut3-share {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 1.1rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border);
}
.ut3-share__label { font-size: 0.82rem; color: var(--text-muted); margin-right: 0.15rem; }
.ut3-share .ut3-btn { font-size: 0.8rem; padding: 0.28rem 0.7rem; }

/* ─── Utilities ─────────────────────────────────────────────────────── */
.ut3-center { text-align: center; }
.ut3-text-muted { color: var(--text-muted) !important; }
.ut3-text-accent { color: var(--accent) !important; }
.ut3-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.ut3-mt { margin-top: 1.5rem; }
.ut3-mb { margin-bottom: 1.5rem; }

/* Admin sidebar — unchanged */
.ut3-admin-nav {
    min-height: 100vh;
    padding-top: 1rem;
}
