
body {
background-color: #ffffff;
color: #111111;
}
#globalSearchOverlay {
    top:var(--header-height);
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    overflow-y: auto;

    background: #fff;

    display: none;

    z-index: 10000;
    padding: 20px;
}

#globalSearchOverlay.open {
    display: block;
}
.pvc-search-page {
top: 120px;
font-family: 'Inter', sans-serif;
max-width: 600px;
margin: 0 auto;
}

.pvc-search-header {
display: flex;
align-items: center;
margin-bottom: 70px;
gap: 16px;
}
.pvc-search-back-btn {
color: #111111;
font-size: 20px;
text-decoration: none;
}
.pvc-search-title {
font-size: 24px;
font-weight: 700;
color: #111111;
margin: 0;
font-family: 'Outfit', sans-serif;
}

.pvc-search-input-wrapper {
position: relative;
margin-bottom: 12px;
}
.pvc-search-input-wrapper i.fa-search {
position: absolute;
left: 22px;
top: 50%;
transform: translateY(-50%);
color: #666;
font-size: 18px;
line-height: 1;
pointer-events: none;
}
.pvc-search-input {
width: 100%;
padding: 16px 48px 16px 56px !important;
border-radius: 30px;
border: 1px solid #c9a14a;
font-size: 16px;
line-height: normal;
box-sizing: border-box;
outline: none;
background: #ffffff;
color: #111111;
box-shadow: 0 4px 15px rgba(201, 161, 74, 0.1);
transition: all 0.3s ease;
}
.pvc-search-input:focus {
box-shadow: 0 4px 20px rgba(201, 161, 74, 0.25);
border-color: #b8860b;
}
.pvc-search-clear {
position: absolute;
right: 16px;
top: 50%;
transform: translateY(-50%);
color: #999;
font-size: 16px;
background: none;
border: none;
padding: 8px;
margin: 0;
line-height: 1;
cursor: pointer;
display: none;
}

.pvc-search-helper {
font-size: 13px;
color: #666;
margin-bottom: 24px;
}

.pvc-section-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 16px;
}
.pvc-section-title {
font-size: 16px;
font-weight: 700;
color: #111111;
margin: 0;
}
.pvc-badge-top {
background-color: rgba(201, 161, 74, 0.15);
color: #b8860b;
font-size: 11px;
font-weight: 700;
padding: 2px 8px;
border-radius: 12px;
margin-left: 8px;
}

.pvc-suggestions-container {
display: flex;
gap: 10px;
overflow-x: auto;
padding-bottom: 8px;
margin-bottom: 32px;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}
.pvc-suggestions-container::-webkit-scrollbar {
display: none;
}
.pvc-suggestion-chip {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
border: 1px solid #f0f0f0;
border-radius: 8px;
background: #ffffff;
color: #111;
font-size: 14px;
font-weight: 600;
text-decoration: none;
white-space: nowrap;
box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.pvc-suggestion-chip i {
color: #c9a14a;
}

.pvc-results-container {
display: flex;
flex-direction: column;
gap: 12px;
}
.pvc-result-card {
display: flex;
align-items: center;
gap: 16px;
padding: 16px;
border: 1px solid #f0f0f0;
border-radius: 12px;
background: #ffffff;
text-decoration: none;
box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.pvc-result-img {
width: 70px;
height: 70px;
object-fit: contain;
border-radius: 8px;
}
.pvc-result-info {
flex: 1;
display: flex;
flex-direction: column;
}
.pvc-result-title {
font-size: 15px;
font-weight: 700;
color: #111;
margin-bottom: 4px;
line-height: 1.3;
}
.pvc-result-meta {
font-size: 12px;
color: #666;
margin-bottom: 6px;
display: flex;
align-items: center;
gap: 6px;
}
.pvc-result-meta i {
color: #999;
}
.pvc-result-price {
font-size: 15px;
font-weight: 700;
color: #c9a14a;
}
.pvc-result-arrow {
color: #999;
font-size: 14px;
}

.pvc-state-box {
text-align: center;
padding: 40px 20px;
color: #666;
font-size: 14px;
}
.pvc-loader {
border: 3px solid #f3f3f3;
border-top: 3px solid #c9a14a;
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 1s linear infinite;
margin: 0 auto 16px auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.hidden {
display: none !important;
}
