* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: #eee;
    padding-bottom: 55px;
}

.site-header {
    text-align: center;
    padding: 32px 16px 26px;
    background: linear-gradient(180deg, #1b1b1b, #0d0d0d);
    border-bottom: 1px solid #2b2b2b;
}

.brand-link {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.logo-mark {
    color: #c28b3c;
    font-size: 28px;
    margin-bottom: 4px;
}

.site-header h1 {
    margin: 0;
    font-size: 42px;
    letter-spacing: .5px;
    font-weight: 800;
}

.tagline {
    margin-top: 8px;
    color: #c28b3c;
    font-size: 18px;
}

.page-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 24px 18px 40px;
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.filter-btn {
    background: #1e1e1e;
    color: #eee;
    border: 1px solid #555;
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 14px;
}

.filter-btn.active,
.filter-btn:hover {
    background: #c28b3c;
    color: #111;
    border-color: #c28b3c;
}

.search-wrap {
    max-width: 900px;
    margin: 0 auto 26px;
}

.search-input {
    width: 100%;
    background: #1e1e1e;
    color: #eee;
    border: 1px solid #444;
    border-radius: 999px;
    padding: 13px 18px;
    font-size: 16px;
    outline: none;
}

.search-input:focus {
    border-color: #c28b3c;
    box-shadow: 0 0 0 2px rgba(194,139,60,.18);
}

.tool-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.price-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #171717;
    border: 1px solid #333;
    border-radius: 999px;
    padding: 8px 12px;
}

.tool-label {
    color: #c28b3c;
    font-weight: 800;
    font-size: 14px;
}

.price-input {
    width: 92px;
    background: #222;
    color: #eee;
    border: 1px solid #444;
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 14px;
    outline: none;
}

.price-input:focus {
    border-color: #c28b3c;
}

.price-separator {
    color: #aaa;
    font-size: 13px;
}

.compact-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #171717;
    border: 1px solid #333;
    border-radius: 999px;
    padding: 10px 14px;
    color: #ddd;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
}

.compact-toggle:hover {
    border-color: #c28b3c;
}

.compact-toggle input {
    accent-color: #c28b3c;
}

.result-count {
    margin-top: 12px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.compact-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 13px;
}

.card-link {
    color: inherit;
    text-decoration: none;
}

.card {
    position: relative;
    overflow: hidden;
    background: #1d1d1d;
    border: 1px solid #2e2e2e;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,.35);
    transition: transform .15s ease, border-color .15s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #c28b3c;
}

.image-wrap {
    position: relative;
    background: #f3f0ea;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.compact-card {
    border-radius: 10px;
}

.compact-image-wrap {
    height: 165px;
}

.compact-image-wrap img {
    padding: 5px;
}

.compact-hover-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 9px 10px;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.88) 18%, rgba(0,0,0,.94));
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease;
    pointer-events: none;
}

.compact-card:hover .compact-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.compact-hover-info strong {
    display: block;
    margin-top: 4px;
    color: #c28b3c;
    font-size: 14px;
}

.card-body {
    padding: 15px 16px 18px;
}

.title {
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    min-height: 52px;
}


.card-sku {
    margin-top: 8px;
    color: #c28b3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
}

.compact-card-sku {
    margin-top: 4px;
    font-size: 11px;
    color: #d29a43;
}

.price {
    margin-top: 12px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.price.sold-price,
.sold-price {
    color: #c28b3c;
    letter-spacing: 1px;
}

.sold-watermark {
    position: absolute;
    top: 18%;
    left: -10%;
    width: 120%;
    text-align: center;
    transform: rotate(-15deg);
    color: rgba(194, 139, 60, .82);
    border: 2px solid rgba(194, 139, 60, .62);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 5px 0;
    text-transform: uppercase;
    pointer-events: none;
    background: rgba(20,20,20,.06);
    z-index: 5;
}

.compact-grid .sold-watermark {
    top: 20%;
    font-size: 12px;
    letter-spacing: 1px;
    border-width: 1px;
    padding: 3px 0;
}

.empty-message,
.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #aaa;
    padding: 40px;
}

/* Detail page */

.detail-page {
    max-width: 1200px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 18px;
    color: #c28b3c;
    text-decoration: none;
    font-weight: 700;
}

.item-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 18px;
}

.item-nav-button {
    display: inline-block;
    background: #1d1d1d;
    color: #c28b3c;
    border: 1px solid #3b3b3b;
    border-radius: 999px;
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 800;
}

.item-nav-button:hover {
    background: #c28b3c;
    color: #111;
    border-color: #c28b3c;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 26px;
    align-items: start;
}

.detail-gallery,
.detail-info {
    background: #1d1d1d;
    border: 1px solid #2e2e2e;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,.35);
    overflow: hidden;
}

.detail-main-image-wrap {
    position: relative;
    background: #f3f0ea;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}

.detail-main-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 10px;
}

.thumb-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px;
    background: #151515;
    border-top: 1px solid #2e2e2e;
}

.thumb-btn {
    border: 2px solid transparent;
    background: #f3f0ea;
    border-radius: 8px;
    padding: 0;
    width: 92px;
    height: 72px;
    flex: 0 0 auto;
    cursor: pointer;
    overflow: hidden;
}

.thumb-btn.active {
    border-color: #c28b3c;
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.detail-info {
    padding: 24px;
}

.detail-title {
    font-size: 30px;
    line-height: 1.15;
    margin: 0 0 14px;
}

.detail-price {
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    margin: 0 0 18px;
}

.detail-price.sold-price {
    color: #c28b3c;
    letter-spacing: 1px;
}

.detail-status {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 12px;
    border: 1px solid #c28b3c;
    color: #c28b3c;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.detail-meta {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 18px;
}

.detail-description {
    color: #ddd;
    line-height: 1.5;
    white-space: pre-wrap;
    margin-top: 18px;
}

.contact-box {
    margin-top: 24px;
    padding: 16px;
    background: #121212;
    border: 1px solid #333;
    border-radius: 12px;
}

.contact-box strong {
    color: #c28b3c;
}

.instagram-button {
    display: inline-block;
    margin-top: 14px;
    background: #c28b3c;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    border-radius: 999px;
    padding: 11px 18px;
}

.instagram-button:hover {
    filter: brightness(1.08);
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.94);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    cursor: zoom-out;
    padding: 18px;
}

.lightbox.hidden {
    display: none;
}

.lightbox img {
    max-width: 96vw;
    max-height: 94vh;
    object-fit: contain;
    border-radius: 6px;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 42px;
    line-height: 1;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 100000;
}

.lightbox-close:hover {
    color: #c28b3c;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20,20,20,.65);
    border: 1px solid rgba(194,139,60,.7);
    color: #c28b3c;
    width: 52px;
    height: 72px;
    border-radius: 10px;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 100000;
}

.lightbox-arrow:hover {
    background: rgba(194,139,60,.9);
    color: #111;
}

.lightbox-prev {
    left: 18px;
}

.lightbox-next {
    right: 18px;
}

.sticky-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #0b0b0b;
    border-top: 1px solid #333;
    color: #ddd;
    text-align: center;
    padding: 13px 12px;
    font-size: 14px;
    z-index: 999;
}

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

    .detail-main-image-wrap {
        height: 430px;
    }
}

@media (max-width: 700px) {
    .site-header h1 {
        font-size: 34px;
    }

    .filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 9px 13px;
        font-size: 13px;
    }

    .tool-row {
        gap: 10px;
    }

    .price-filter {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
    }

    .price-input {
        width: 100px;
    }

    .compact-toggle {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .compact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .image-wrap {
        height: 260px;
    }

    .compact-image-wrap {
        height: 145px;
    }

    .compact-hover-info {
        opacity: 1;
        transform: none;
        font-size: 11px;
        padding: 18px 7px 7px;
    }

    .sold-watermark {
        top: 18%;
        font-size: 16px;
    }

    .compact-grid .sold-watermark {
        font-size: 10px;
    }

    .item-nav {
        flex-direction: column;
    }

    .item-nav-button {
        text-align: center;
    }

    .detail-main-image-wrap {
        height: 340px;
    }

    .detail-title {
        font-size: 24px;
    }

    .detail-price {
        font-size: 30px;
    }

    .lightbox {
        padding: 8px;
    }

    .lightbox-close {
        top: 10px;
        right: 14px;
        font-size: 36px;
    }

    .lightbox-arrow {
        width: 44px;
        height: 60px;
        font-size: 34px;
        background: rgba(20,20,20,.45);
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}



/* V11 toolbar/header polish */

.site-header {
    position: relative;
    padding: 28px 16px 20px;
}

.tagline-row {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
}

.tagline-row .tagline {
    margin-top: 0;
}

.view-toggle {
    position: absolute;
    left: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(2, 7px);
    grid-template-rows: repeat(2, 7px);
    gap: 3px;
    width: 29px;
    height: 29px;
    padding: 5px;
    border: 1px solid #3b3b3b;
    border-radius: 8px;
    background: #151515;
    cursor: pointer;
    opacity: .72;
}

.view-toggle span {
    display: block;
    background: #aaa;
    border-radius: 2px;
}

.view-toggle:hover {
    opacity: 1;
    border-color: #c28b3c;
}

.view-toggle.active {
    border-color: #c28b3c;
    opacity: 1;
}

.view-toggle.active span {
    background: #c28b3c;
}

.search-wrap {
    max-width: 720px;
    margin: 0 auto 14px;
}

.search-input {
    padding: 11px 16px;
    font-size: 15px;
}

.filter-tools {
    max-width: 1050px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filters {
    margin-bottom: 0;
    gap: 8px;
}

.filter-btn {
    padding: 8px 14px;
    font-size: 13px;
}

.price-filter {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #171717;
    border: 1px solid #333;
    border-radius: 999px;
    padding: 6px 8px;
}

.money-symbol {
    color: #c28b3c;
    font-weight: 800;
    font-size: 13px;
    line-height: 1;
}

.price-input {
    width: 72px;
    background: #222;
    color: #eee;
    border: 1px solid #444;
    border-radius: 999px;
    padding: 7px 8px;
    font-size: 13px;
    outline: none;
}

.price-input:focus {
    border-color: #c28b3c;
}

.price-separator {
    color: #777;
    font-size: 13px;
    padding: 0 1px;
}

.clear-price {
    width: 23px;
    height: 23px;
    border: 1px solid #444;
    border-radius: 999px;
    background: #222;
    color: #c28b3c;
    cursor: pointer;
    font-size: 16px;
    line-height: 18px;
    font-weight: 800;
    padding: 0;
}

.clear-price:hover {
    background: #c28b3c;
    color: #111;
    border-color: #c28b3c;
}

.hidden {
    display: none !important;
}

.result-count,
.compact-toggle,
.tool-row,
.tool-label {
    display: none !important;
}

.compact-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 13px;
}

.compact-card {
    border-radius: 10px;
}

.compact-image-wrap {
    height: 165px;
}

.compact-image-wrap img {
    padding: 5px;
}

.compact-hover-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 9px 10px;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.88) 18%, rgba(0,0,0,.94));
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease;
    pointer-events: none;
}

.compact-card:hover .compact-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.compact-hover-info strong {
    display: block;
    margin-top: 4px;
    color: #c28b3c;
    font-size: 14px;
}

.compact-grid .sold-watermark {
    top: 20%;
    font-size: 12px;
    letter-spacing: 1px;
    border-width: 1px;
    padding: 3px 0;
}

@media (max-width: 700px) {
    .site-header {
        padding: 24px 16px 18px;
    }

    .tagline-row {
        gap: 10px;
    }

    .view-toggle {
        left: calc(100% + 10px);
        width: 27px;
        height: 27px;
        grid-template-columns: repeat(2, 6px);
        grid-template-rows: repeat(2, 6px);
    }

    .filter-tools {
        gap: 10px;
        margin-bottom: 20px;
    }

    .filters {
        gap: 7px;
    }

    .filter-btn {
        padding: 7px 11px;
        font-size: 12px;
    }

    .price-filter {
        border-radius: 14px;
    }

    .price-input {
        width: 70px;
    }

    .compact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .compact-image-wrap {
        height: 145px;
    }

    .compact-hover-info {
        opacity: 1;
        transform: none;
        font-size: 11px;
        padding: 18px 7px 7px;
    }

    .compact-grid .sold-watermark {
        font-size: 10px;
    }
}

/* V12 homepage and contact polish */

body {
    padding-bottom: 92px;
}

.sort-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 29px;
    padding: 6px 11px;
    border: 1px solid #3b3b3b;
    border-radius: 999px;
    background: #151515;
    color: #aaa;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2px;
    cursor: pointer;
    opacity: .78;
}

.sort-toggle:hover,
.sort-toggle.active {
    color: #111;
    background: #c28b3c;
    border-color: #c28b3c;
    opacity: 1;
}

.view-toggle {
    position: static;
    transform: none;
    flex: 0 0 auto;
}

.search-input {
    padding: 10px 16px;
    background: #1b1b1b;
}

.filter-btn {
    background: #191919;
    border-color: #484848;
}

.filter-btn.active,
.filter-btn:hover {
    background: #c28b3c;
    color: #111;
    border-color: #c28b3c;
}

.title,
.compact-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.title {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    min-height: 42px;
}

.compact-title {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.compact-image-wrap {
    height: 178px;
}

.compact-image-wrap img {
    padding: 5px 5px 24px;
    transform: translateY(-8px);
}

.compact-hover-info {
    padding: 20px 10px 8px;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.72) 42%, rgba(0,0,0,.94));
}

.sticky-footer {
    padding: 9px 12px 10px;
    font-size: 14px;
    line-height: 1.22;
}

.footer-contact-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #eee;
    text-decoration: none;
    font-weight: 800;
}

.instagram-link:hover {
    color: #c28b3c;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 999px;
    flex: 0 0 auto;
}

.footer-service-line {
    color: #ddd;
    margin-bottom: 2px;
}

.more-info-button {
    border: 0;
    background: transparent;
    color: #c28b3c;
    padding: 0;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.more-info-button:hover {
    text-decoration: underline;
}

.modal-open {
    overflow: hidden;
}

.info-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.info-modal.hidden {
    display: none;
}

.info-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
}

.info-modal-panel {
    position: relative;
    width: min(460px, 100%);
    background: #171717;
    border: 1px solid #3b3b3b;
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(0,0,0,.6);
    padding: 22px 22px 20px;
    color: #eee;
}

.info-modal-panel h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.info-section {
    border-top: 1px solid #2d2d2d;
    padding-top: 13px;
    margin-top: 13px;
}

.info-section:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.info-section h3 {
    margin: 0 0 6px;
    color: #c28b3c;
    font-size: 15px;
}

.info-section p {
    margin: 5px 0;
    color: #ddd;
    line-height: 1.4;
}

.info-modal-close {
    position: absolute;
    top: 10px;
    right: 13px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #eee;
    font-size: 30px;
    line-height: 30px;
    cursor: pointer;
}

.info-modal-close:hover {
    color: #c28b3c;
}

.detail-contact-copy {
    color: #ddd;
    margin-top: 6px;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #151515;
    color: #eee;
    border: 1px solid #3b3b3b;
    padding: 9px 14px;
}

.instagram-button:hover {
    border-color: #c28b3c;
    color: #c28b3c;
    filter: none;
}

.instagram-button .instagram-icon {
    width: 25px;
    height: 25px;
}

@media (max-width: 700px) {
    body {
        padding-bottom: 96px;
    }

    .sort-toggle {
        min-height: 27px;
        padding: 5px 9px;
        font-size: 11px;
    }

    .view-toggle {
        width: 27px;
        height: 27px;
        grid-template-columns: repeat(2, 6px);
        grid-template-rows: repeat(2, 6px);
    }

    .compact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px;
    }

    .compact-image-wrap {
        height: 156px;
    }

    .compact-image-wrap img {
        padding: 4px 4px 25px;
        transform: translateY(-8px);
    }

    .compact-hover-info {
        opacity: 1;
        transform: none;
        font-size: 11px;
        padding: 21px 8px 7px;
    }

    .sticky-footer {
        font-size: 13px;
    }
}


/* BP's Stash */
body.stash-mode {
    padding-bottom: 0;
}

body.stash-mode .site-header {
    padding-top: 38px;
    padding-bottom: 34px;
}

body.stash-mode .logo-mark {
    font-size: 76px;
    line-height: .9;
    margin-bottom: 8px;
    text-shadow: 0 0 22px rgba(194,139,60,.28);
}

body.stash-mode .site-header h1 {
    font-size: 46px;
}

body.stash-mode .tagline {
    color: #d6ad6a;
    letter-spacing: .4px;
}

.stash-access-page {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stash-access-card {
    width: min(520px, 94vw);
    background: #1d1d1d;
    border: 1px solid #3a3328;
    border-radius: 18px;
    padding: 34px 30px 32px;
    text-align: center;
    box-shadow: 0 16px 45px rgba(0,0,0,.42);
}

.stash-logo-large {
    color: #c28b3c;
    font-size: 118px;
    line-height: .8;
    margin-bottom: 12px;
    text-shadow: 0 0 30px rgba(194,139,60,.3);
}

.stash-access-card h2 {
    margin: 0;
    font-size: 36px;
    letter-spacing: .4px;
}

.stash-subtitle {
    margin: 10px 0 28px;
    color: #c28b3c;
    font-size: 17px;
    font-weight: 700;
}

.stash-access-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.stash-access-form label {
    color: #ddd;
    font-weight: 800;
    font-size: 14px;
}

.stash-code-input {
    width: 100%;
    background: #111;
    color: #eee;
    border: 1px solid #444;
    border-radius: 999px;
    padding: 14px 18px;
    font-size: 18px;
    outline: none;
    text-align: center;
    letter-spacing: 2px;
}

.stash-code-input:focus {
    border-color: #c28b3c;
    box-shadow: 0 0 0 2px rgba(194,139,60,.18);
}

.stash-enter-button {
    margin-top: 4px;
    width: 100%;
    background: #c28b3c;
    color: #111;
    border: 1px solid #c28b3c;
    border-radius: 999px;
    padding: 14px 18px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 900;
}

.stash-enter-button:hover {
    filter: brightness(1.08);
}

.stash-error {
    margin-top: 18px;
    color: #ffb3b3;
    font-weight: 800;
}

body.stash-mode .price-filter {
    display: none !important;
}

body.stash-mode img {
    -webkit-user-drag: none;
    user-select: none;
}

.stash-note-box {
    border-color: #3a3328;
}

@media (max-width: 700px) {
    body.stash-mode .logo-mark {
        font-size: 62px;
    }

    .stash-logo-large {
        font-size: 92px;
    }

    .stash-access-card h2 {
        font-size: 31px;
    }
}


.stash-admin-tools {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #333;
}

.stash-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c28b3c;
    color: #111;
    border: none;
    border-radius: 10px;
    padding: 11px 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,.22);
}

.stash-share-button:hover {
    background: #d9a34f;
}

.stash-share-button:disabled {
    opacity: .65;
    cursor: wait;
}

.stash-share-status {
    margin-top: 10px;
    color: #c28b3c;
    font-size: 14px;
    font-weight: 700;
}

.stash-share-status.error {
    color: #ff7373;
}

.stash-admin-login-divider {
    height: 1px;
    background: #332b20;
    margin: 24px 0 18px;
}

.stash-admin-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stash-admin-label {
    color: #c28b3c;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.google-admin-button {
    width: 100%;
    background: #101010;
    color: #eee;
    border: 1px solid #4a3a25;
    border-radius: 999px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 850;
}

.google-admin-button:hover {
    border-color: #c28b3c;
    color: #fff;
}

.google-admin-button:disabled {
    opacity: .65;
    cursor: wait;
}

.stash-admin-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(194,139,60,.13);
    border-top: 1px solid rgba(194,139,60,.28);
    border-bottom: 1px solid rgba(194,139,60,.28);
    color: #eee;
    padding: 9px 14px;
    font-size: 13px;
}

.stash-admin-badge {
    color: #111;
    background: #c28b3c;
    border-radius: 999px;
    padding: 5px 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.stash-admin-user {
    color: #d7c5aa;
    font-weight: 750;
}

.stash-admin-signout {
    background: transparent;
    color: #c28b3c;
    border: 1px solid rgba(194,139,60,.55);
    border-radius: 999px;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 850;
}

.stash-admin-signout:hover {
    background: rgba(194,139,60,.13);
}

.share-home-link {
    display: inline-flex;
    text-decoration: none;
    margin-top: 16px;
}

/* V14.4.4 stash administrator elevation and visitor downgrade */
body.stash-mode .site-header {
    position: relative;
}

.stash-admin-quick-login {
    position: absolute;
    top: 22px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(194,139,60,.10);
    color: #d6ad6a;
    border: 1px solid rgba(194,139,60,.50);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    letter-spacing: .02em;
}

.stash-admin-quick-login::before {
    content: "👤";
    font-size: 12px;
}

.stash-admin-quick-login:hover {
    background: rgba(194,139,60,.18);
    border-color: rgba(194,139,60,.78);
}

.stash-admin-quick-login:disabled {
    opacity: .65;
    cursor: wait;
}

@media (max-width: 720px) {
    .stash-admin-quick-login {
        top: 12px;
        right: 12px;
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* V14.5 persistent Newest selection and stable 48-hour Random order */
