* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Work Sans', 'Segoe UI', Arial, sans-serif;
  background: #F7F1E4;
  color: #241B14;
}
a { color: #A32D1F; text-decoration: none; }
a:hover { color: #7a2116; text-decoration: underline; }
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; margin: 0; }
img { max-width: 100%; display: block; }
::selection { background: #E0A72E; }

.topbar {
  background: #16281F;
  color: #E9DEC0;
  text-align: center;
  font-size: 12.5px;
  padding: 7px 16px;
  letter-spacing: 0.03em;
}

header.site-header {
  background: #1F3A2E;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: #F4EEE1;
  letter-spacing: 0.08em;
  font-weight: 600;
}
nav.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}
nav.main-nav a { color: #E9DEC0; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.header-actions a { color: #E9DEC0; }
.cart-link { color: #F4EEE1 !important; font-weight: 600; }

.site-footer {
  background: #16281F;
  color: #c9c0a4;
  padding: 44px 6vw 20px;
}
.site-footer a { color: #c9c0a4; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}
.footer-col-title {
  color: #F4EEE1;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 13.5px;
}
.footer-links { display: flex; flex-direction: column; gap: 7px; font-size: 13px; }
.footer-bottom {
  border-top: 1px solid #2b3f30;
  margin-top: 30px;
  padding-top: 16px;
  font-size: 12px;
  text-align: center;
  color: #8a8270;
}
.footer-simple {
  background: #16281F;
  color: #c9c0a4;
  padding: 30px 6vw;
  text-align: center;
  font-size: 12px;
}
.footer-simple a { color: #c9c0a4; margin-right: 14px; }

button { font-family: 'Work Sans', 'Segoe UI', Arial, sans-serif; }
input, select, textarea { font-family: 'Work Sans', 'Segoe UI', Arial, sans-serif; }

.btn-primary {
  background: #C1613D;
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: 2px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14.5px;
  display: inline-block;
}
.btn-secondary {
  border: 1.5px solid #E9DEC0;
  color: #F7F1E4;
  padding: 14px 26px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
}

.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #241B14;
  color: #F4EEE1;
  padding: 18px 6vw;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 50;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
.cookie-banner button {
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  padding: 9px 16px;
}
.cookie-btn-ghost { background: transparent; border: 1px solid #6b6152; color: #F4EEE1; }
.cookie-btn-accept { background: #C1613D; border: none; color: #fff; font-weight: 600; padding: 9px 18px; }

@media (max-width: 760px) {
  header.site-header { padding: 12px 16px; }
  .footer-grid { gap: 18px; }
}
