body {
    background-color: #f0ebd8;
    color: #3e2723;
    /* Subtle paper grain texture */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Brass Gradient Text */
.text-brass-gradient {
    background: linear-gradient(to bottom, #cfae5f, #8a6a26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Vintage photo filter */
.vintage-filter {
    filter: sepia(0.3) contrast(1.1) brightness(0.9);
    transition: filter 0.5s ease;
}
.group:hover .vintage-filter {
    filter: sepia(0) contrast(1.05) brightness(1);
}

/* Card z-index - always below filter menu */
article.group {
    z-index: 1;
}
article.group:hover {
    z-index: 1;
}

/* vouched seal badge */
.vouched-seal {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
@media (max-width: 767px) {
    .vouched-seal {
        width: 130px;
        height: 130px;
    }
    .vouched-seal-content {
        font-size: 14px !important;
        transform: translate(21px, 2px) !important;
    }
}
.vouched-seal svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.vouched-seal-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    color: #2a1e16;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(15px, 2px);
}
