body {
margin:0;
font-family:Arial, sans-serif;
background:#f5f5f5;
color:#111;
}

#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -999;
  pointer-events: none;
}


.overlay {
min-height:100vh;
background:rgba(255,255,255,0.85);
padding-bottom:40px;
}

html.dark body {
background:#000;
color:#fff;
}

html.dark .overlay {
background:rgba(0,0,0,0.8);
}

.navbar {
display:flex;
flex-wrap:wrap;
gap:10px;
padding:10px;
background:#ddd;
position:sticky;
top:0;
z-index:10;
}

html.dark .navbar {
background:#111;
}

.navbar input,
.navbar select,
.navbar button {
padding:8px;
border-radius:6px;
border:none;
}

.personCard {
padding:20px;
background:#fff;
margin:20px;
border-radius:12px;
}

html.dark .personCard {
background:#1b1b1b;
}

#productContainer {
display:grid;
grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
gap:20px;
padding:20px;
}

.product {
background:#fff;
padding:15px;
border-radius:12px;
}

html.dark .product {
background:#1c1c1c;
}

.thumb {
width:100%;
max-height:180px;
object-fit:cover;
border-radius:8px;
}

.visitBtn {
display:inline-block;
margin-top:10px;
padding:8px 12px;
background:#00d4ff;
color:#000;
font-weight:bold;
text-decoration:none;
border-radius:6px;
}
