* { box-sizing: border-box; margin: 0; padding: 0; font-family: system-ui, Arial, sans-serif; }
body { background: #f6f6f6; color: #111; }

header, footer {
  background: #000;
  color: #fff;
  padding: 12px 16px;
}
/* ===== HEADER ===== */
.site-header {
  background: #000;
  color: #fff;
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 38px;
}

.brand-text small {
  display: block;
  font-size: 11px;
  opacity: 0.7;
}

.nav-links {
  display: none;
  gap: 16px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111;
  padding: 12px 16px;
}

.mobile-menu a {
  color: #fff;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Desktop */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .menu-btn, .mobile-menu { display: none; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0d0d0d;
  color: #ddd;
  padding: 32px 16px 10px;
  margin-top: 40px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 8px;
}

.site-footer a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 12px;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img { height: 36px; }

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 12px;
  font-size: 14px;
}

.container { padding: 16px; max-width: 1200px; margin: auto; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  transition: transform .15s ease;
}

.card:hover { transform: translateY(-3px); }

.card img { width: 100%; height: 160px; object-fit: cover; }

.card .p { padding: 12px; }
.price { font-weight: 700; margin-top: 6px; }

button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
}

footer { text-align: center; font-size: 13px; }
/* Armani-inspired accents */
:root {
  --lux-black: #0a0a0a;
  --lux-gray: #9a9a9a;
}

.site-header,
.site-footer {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

button {
  background: #000;
  letter-spacing: 0.5px;
}

button:hover {
  background: #111;
}
@media (min-width: 768px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
  .card img { height: 190px; }
}