:root {
  --primary: #161926;
  --secondary: #EDBE66;
  --accent: #F5E6CC;
  --muted: #2A2E3D;
  --glass: rgba(22, 25, 38, 0.9);
  --border: rgba(237, 190, 102, 0.15);
  --text-dim: rgba(245, 230, 204, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--primary);
  color: white;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.label {
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.nav {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.logo {
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 4px;
  color: var(--secondary);
  text-transform: uppercase;
  text-decoration: none;
}

.menu {
  display: flex;
  gap: 2.5rem;
}

.link {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.link:hover, .link.active {
  color: var(--secondary);
}

.btn {
  padding: 0.8rem 2rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.page-header {
  padding: 6rem 0 4rem;
  text-align: center;
}

.page-header .title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-header .title span {
  font-style: italic;
  color: var(--secondary);
}

.page-header .sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

.filter-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filters {
  display: flex;
  gap: 1.5rem;
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.sort-select {
  background: transparent;
  border: 1px solid var(--border);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  outline: none;
}

.section {
  padding: 4rem 0 8rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 3rem;
}

.card {
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.01);
  overflow: hidden;
}

.card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.card-name {
  font-size: 1.25rem;
}

.card-price {
  color: var(--secondary);
  font-weight: bold;
}

.card-text {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}







.footer {
  background: var(--muted);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  border-top: 1px solid var(--border);
}

.foot-head {
  color: var(--secondary);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.foot-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  opacity: 0.7;
  font-size: 0.9rem;
}

.foot-list .foot-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
}
.foot-list .foot-link:hover {
  color: var(--secondary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nav { padding: 1rem 2rem; }
  .menu { display: none; }
  .flex-row { flex-direction: column; gap: 1.5rem; }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .foot-list { align-items: center; }
}


.modal {
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,0.6);
justify-content:center;
align-items:center;
z-index:1000;
}

.modal-content {
background:white;
padding:2rem;
border-radius:12px;
width:400px;
}

.modal-content input {
width:100%;
padding:0.7rem;
margin-top:0.5rem;
margin-bottom:1rem;
}

.close-modal {
float:right;
font-size:22px;
cursor:pointer;
}