:root {
    --tnb-bg: #fcf1db;
    --tnb-line: rgba(110, 73, 51, 0.12);
    --tnb-brown: #6b4733;
    --tnb-text: #3d3530;
}

html,
body,
.page-main,
.page-wrapper,
#maincontent,
.columns,
.column.main,
.page-layout-1column .column.main {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: var(--tnb-bg) !important;
    font-family: 'Outfit', sans-serif !important;
}

.page-header,
.page-footer,
.nav-sections,
.breadcrumbs,
.page-title-wrapper,
.sidebar,
.sidebar-main,
.sidebar-additional {
    display: none !important;
}

.tnb-search-layout {
    display: block;
    min-height: 100vh;
    background: var(--tnb-bg);
    width: 100%;
}

.tnb-search-main {
    width: 100%;
    max-width: 100%;
    padding: 18px 22px 44px;
    box-sizing: border-box;
}

.tnb-search-results {
    padding-bottom: 48px;
    width: 100%;
}

.tnb-search-results__heading {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.58);
    border-left: 5px solid #ff9800;
    color: #d32f2f;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 24px;
    box-sizing: border-box;
}

.tnb-search-results__heading::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff9800;
    flex-shrink: 0;
}

.tnb-search-results__heading span {
    color: var(--tnb-text);
}

.tnb-search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
    gap: 22px;
}

.tnb-search-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 12px;
    border: 1px solid rgba(107, 71, 51, 0.08);
    box-shadow: 0 14px 28px rgba(107, 71, 51, 0.07);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tnb-search-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 38px rgba(107, 71, 51, 0.12);
}

.tnb-search-card__image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    background: #f7efe3;
    margin-bottom: 12px;
}

.tnb-search-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tnb-search-card__name {
    color: var(--tnb-text);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
    min-height: 44px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.tnb-search-card__price {
    color: var(--tnb-brown);
    font-size: 16px;
    font-weight: 800;
}

.tnb-search-grid__loading {
    grid-column: 1 / -1;
    padding: 36px;
    text-align: center;
    color: rgba(61, 53, 48, 0.72);
}

@media (max-width: 980px) {
    .tnb-search-main {
        padding: 16px;
    }
}

@media (max-width: 640px) {
    .tnb-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .tnb-search-results__heading {
        font-size: 16px;
        padding: 12px 14px;
    }
}
