.boutique-section{
  background:transparent; /* use global inner-page backdrop */
  color:var(--text);
  padding:64px 18px;
  margin-top:var(--nav-height);
}
.section-header{ text-align:center; margin-bottom:30px }
.centered{ text-align:center }
.section-header .section-title{ margin-inline:auto }
.section-header .section-title::after{ left:50%; transform:translateX(-50%) }
.section-header .section-sub{ margin:.5rem auto 0; max-width:760px }

.products-grid{
  display:grid;
  grid-template-columns:1fr; /* mobile */
  gap:26px;
  margin-top:34px;
}
@media (min-width:640px){ .products-grid{ grid-template-columns:repeat(2,minmax(0,1fr)) } }
@media (min-width:980px){ .products-grid{ grid-template-columns:repeat(3,minmax(0,1fr)) } }

.product-card{
  position:relative;
  background:var(--surface);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  box-shadow:0 22px 42px rgba(0,0,0,.42);
  overflow:hidden;
  transition:transform .22s ease, box-shadow .25s ease, border-color .2s ease;
  display:flex;
  flex-direction:column;
}
.product-media{ width:100%; height:220px; background:#111 }
.product-media img{ width:100%; height:100%; object-fit:cover }
.product-content{ padding:18px; display:flex; flex-direction:column; gap:10px }
.product-content h3{ margin:2px 0 6px; font-size:1.08rem; font-weight:700 }
.product-content p{ margin:0; color:var(--sub) }
.product-price{
  display:inline-block;
  align-self:flex-start;
  font-weight:800;
  letter-spacing:.03em;
  padding:8px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.product-footer{ margin-top:auto; padding-top:10px; display:flex; justify-content:flex-start }
.product-footer .btn{ padding:.5rem 1.2rem; border-radius:999px }

@media (hover:hover){
  .product-card:hover{ transform:translateY(-4px); box-shadow:0 26px 52px rgba(0,0,0,.5); border-color:rgba(255,255,255,.18) }
}
@media (max-width:820px){ .product-content{ padding:16px } }

/* Controls: search + sort */
.products-controls{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}
.products-controls input[type="search"],
.products-controls select{
  background:rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  height:44px;
  padding:10px 14px;
  outline:none;
  font-size:.95rem;
  transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.products-controls input::placeholder{ color:var(--sub); opacity:.9 }
.products-controls input[type="search"]{ flex:1 1 280px; min-width:220px; cursor:text }
.products-controls select{ flex:0 0 220px; min-width:200px; cursor:pointer }
.products-controls input[type="search"]::-webkit-search-cancel-button,
.products-controls input[type="search"]::-webkit-search-decoration{ -webkit-appearance:none; appearance:none }
.products-controls select{ -webkit-appearance:none; appearance:none; background-repeat:no-repeat; background-position:right 12px center; background-size:14px }
/* Chevron for custom select (light gray) */
.products-controls select{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23d0d0d0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); padding-right:38px }
.products-controls input[type="search"]:hover,
.products-controls select:hover{ border-color:rgba(255,255,255,.22) }
.products-controls input[type="search"]:focus,
.products-controls input[type="search"]:focus-visible,
.products-controls select:focus,
.products-controls select:focus-visible{
  border-color:var(--gold-2);
  box-shadow:0 0 0 3px rgba(255,206,69,.18);
}
.products-controls select{ color-scheme: dark; }
.products-controls select option, .products-controls select optgroup{
  background:#0f0f0f; color:var(--text);
}
.products-controls select option[disabled]{ color:#8e8e8e }
/* Selected option tint (best-effort — UA may override) */
.products-controls select option:checked{ background:rgba(255,206,69,.22); color:var(--text) }
.product-card.hidden{ display:none }
