:root {
  --primary: #d81b60;
  --primary-dark: #ad1457;
  --primary-light: #fce4ec;
  --accent: #ffb300;
  --accent-dark: #ff8f00;
  --text: #2a2a2a;
  --bg: #fffafc;
  --white: #fff;
  --gray: #555;
  --gray-light: #888;
  --border: #ececec;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--primary-dark); }

/* Header */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--white);
}

.header-logo {
  height: 56px;
  width: 56px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

.header-brand h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-brand h1 small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.header-contact {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
}

.header-contact a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.95;
}

.header-contact a:hover { opacity: 1; text-decoration: underline; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff8e1 100%);
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 4px solid var(--accent);
}

.hero h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Main content */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.section-title {
  font-size: 1.75rem;
  color: var(--primary-dark);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Items grid */
.items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(216,27,96,0.15);
}

.item-image {
  width: 100%;
  height: 220px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-image .placeholder {
  font-size: 4rem;
  opacity: 0.35;
}

.item-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.item-body h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.item-body .subtitle {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 0.8rem;
  font-style: italic;
}

.item-body .description {
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 1rem;
  flex: 1;
}

.price-list {
  list-style: none;
  border-top: 1px dashed var(--border);
  padding-top: 0.75rem;
  margin-top: auto;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
  padding: 0.25rem 0;
}

.price-list li .label {
  color: var(--gray);
}

.price-list li .price {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.note {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.85rem;
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  margin-top: 0.85rem;
  border-left: 3px solid var(--primary);
}

/* Contact section */
.contact {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 2rem;
  margin-top: 3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}

.contact h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-item {
  text-align: center;
}

.contact-item .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-item .value {
  font-size: 1rem;
  color: var(--text);
}

.contact-item a {
  color: var(--primary-dark);
  text-decoration: none;
}

.contact-item a:hover { text-decoration: underline; }

/* Prose */
.prose {
  max-width: 750px;
  margin: 0 auto;
}

.prose p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.prose h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin: 1.5rem 0 0.5rem;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 2rem 1.5rem 1.5rem;
  margin-top: 4rem;
  text-align: center;
}

footer p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  opacity: 0.9;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.8rem;
  opacity: 0.75;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 95vw;
  max-height: 92vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.15s;
  padding: 0.25rem 0.6rem;
}

.lightbox-close:hover { opacity: 1; }

/* Responsive */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .header-contact { flex-wrap: wrap; justify-content: center; }

  .hero h2 { font-size: 1.5rem; }
  .hero p { font-size: 0.95rem; }

  .items { grid-template-columns: 1fr; }
}
