/* ANTWERP STUDIO — static visual clone */

:root {
  --ink: #1c1a17;
  --paper: #ffffff;
  --line: #dcd6cc;
  --muted: #837c6f;
  --accent: #7a6a52;
  --sold: #b8a98d;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Header ---------- */

.site-header {
  border-bottom: 1px solid var(--line);
  padding: 28px 24px 20px;
  text-align: center;
}

.logo {
  margin: 0 0 18px;
}

.logo a { display: inline-block; }

.logo img {
  height: 78px;
  width: auto;
  display: inline-block;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.main-nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.main-nav .active {
  border-bottom: 1px solid var(--ink);
}

/* ---------- Mobile menu toggle ---------- */

.menu-toggle {
  display: none;
  position: absolute;
  top: 26px;
  left: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 680px) {
  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding-top: 22px;
  }

  .main-nav.open { display: flex; }

  .main-nav .nav-dropdown-menu {
    position: static;
    transform: none;
    border: none;
    box-shadow: none;
    min-width: 0;
    padding: 10px 0 0;
  }

  .main-nav .nav-dropdown-menu a {
    text-align: center;
    padding: 8px 0;
  }
}

/* ---------- Collection dropdown ---------- */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(28,26,23,0.14);
  min-width: 190px;
  z-index: 70;
  padding: 14px 0 8px;
  margin-top: 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.visible {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-align: left;
  border-bottom: none !important;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #f4f1ec;
}

.header-icons {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- Header search ---------- */

.site-header {
  position: relative;
}

.search-toggle {
  position: absolute;
  top: 26px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
}

.search-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}

.search-box {
  display: none;
  position: absolute;
  top: 60px;
  right: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(28,26,23,0.1);
  padding: 10px;
  z-index: 50;
  width: 240px;
}

.search-box.visible { display: block; }

.search-box input {
  width: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.search-box input:focus {
  outline: none;
  border-color: var(--ink);
}

.search-empty {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 40px 20px;
  display: none;
}

/* ---------- Sort dropdown ---------- */

.sort-bar {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
}

.sort-dropdown {
  position: relative;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.sort-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 9px 14px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}

.sort-toggle svg {
  width: 12px;
  height: 12px;
}

.sort-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(28,26,23,0.12);
  min-width: 200px;
  z-index: 60;
  overflow: hidden;
}

.sort-menu.visible { display: block; }

.sort-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
}

.sort-option:hover {
  background: #eef3fb;
}

.sort-option.selected {
  background: #5b8def;
  color: #fff;
}

.sort-option .check {
  width: 14px;
  visibility: hidden;
}

.sort-option.selected .check {
  visibility: visible;
}

/* ---------- Main / layout ---------- */

main {
  flex: 1;
  width: 100%;
  padding-bottom: 72px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Shop grid ---------- */

.shop-intro {
  text-align: center;
  padding: 36px 24px 8px;
  max-width: 640px;
  margin: 0 auto;
}

.shop-intro h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 4px;
}

.shop-intro p {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 40px;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; max-width: 480px; }
}

.product-card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.product-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #efeae1, #ded5c4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumb span.mark {
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #a89a80;
  text-align: center;
  padding: 12px;
  opacity: 0.65;
}

.product-thumb .sold-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--paper);
  border: 1px solid var(--ink);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
}


.product-info {
  padding: 12px 6px 26px;
  text-align: center;
}

.product-name {
  font-size: 12.5px;
  line-height: 1.4;
  margin: 0 0 4px;
}

.product-price {
  font-size: 12px;
  color: var(--ink);
}

.product-price.sold {
  text-decoration: line-through;
  color: var(--ink);
}

/* ---------- Archive ---------- */

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 26px;
  max-width: 1080px;
  margin: 32px auto 0;
  padding: 0 24px;
}

@media (max-width: 900px) {
  .archive-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}

.archive-card { text-align: center; }

.archive-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #efeae1;
}

.archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  opacity: 0.92;
}

.archive-name {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--muted);
  margin: 8px 4px 0;
}

/* ---------- Home feed ---------- */

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 30px auto 0;
  padding: 0 24px;
}

@media (max-width: 760px) {
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .feed-grid { grid-template-columns: 1fr; }
}

.feed-card { text-align: center; }

.feed-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #efeae1;
}

.feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feed-caption {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin: 8px 4px 0;
}

/* ---------- Simple content pages (About / Contact / Policy) ---------- */

.page-header {
  border-bottom: 1px solid var(--line);
  padding: 20px 24px;
  font-size: 12px;
}

.back-link {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
}

.contact-block h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.content-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  text-align: center;
}

.product-detail-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px 20px;
  text-align: left;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 800px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
}

.product-gallery {
  min-width: 0;
}

.product-detail-image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 640px;
}

.product-detail-image img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
}

.product-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  min-width: 0;
}

.product-gallery-thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  flex: 0 0 auto;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.15s ease;
  background: #f4f1ec;
  border: 1px solid transparent;
}

.product-gallery-thumbs img:hover {
  opacity: 0.85;
}

.product-gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--ink);
}

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 15, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox-overlay.visible {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 32px;
  font-family: Georgia, serif;
  cursor: pointer;
  line-height: 1;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 40px;
  font-family: Georgia, serif;
  cursor: pointer;
  line-height: 1;
  padding: 12px 18px;
  user-select: none;
  opacity: 0.75;
  transition: opacity 0.15s ease;
}

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

.lightbox-arrow.prev { left: 12px; }
.lightbox-arrow.next { right: 12px; }

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-family: Georgia, serif;
}

.product-detail-info h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}

.product-detail-info .divider {
  width: 48px;
  height: 1px;
  background: var(--ink);
  margin: 0 0 22px;
}

.product-detail-price {
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 22px;
}

.product-detail-price.sold {
  text-decoration: line-through;
  color: var(--muted);
}

.product-detail-description {
  font-size: 13.5px;
  line-height: 1.75;
  color: #2c2925;
  white-space: pre-line;
  margin: 0 0 28px;
}

.related-section {
  max-width: 1080px;
  margin: 30px auto 0;
  padding: 40px 24px 60px;
  border-top: 1px solid var(--line);
}

.related-section h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  margin: 0 0 28px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

@media (max-width: 800px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

.content-page h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 28px;
}

.content-page p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.content-page .lead {
  font-family: Georgia, serif;
  font-size: 17px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  margin-top: 12px;
  padding: 11px 26px;
  border: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.cta-button:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ---------- Enquiry / contact form ---------- */

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-top: 8px;
}

.enquiry-form input,
.enquiry-form textarea {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.form-status {
  font-size: 12.5px;
  margin-top: 4px;
  min-height: 16px;
}

.form-status.success { color: #4d7a4d; }
.form-status.error { color: #a3453c; }

/* ---------- Newsletter popup ---------- */

.newsletter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 23, 0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.newsletter-overlay.visible {
  display: flex;
}

.newsletter-modal {
  background: var(--paper);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px 32px;
  position: relative;
  text-align: center;
}

.newsletter-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  background: none;
  border: none;
  padding: 4px;
}

.newsletter-modal h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 10px;
}

.newsletter-modal p {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 20px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--ink);
}

.newsletter-status {
  font-size: 12px;
  margin-top: 2px;
  min-height: 16px;
}

/* ---------- WhatsApp chat widget ---------- */

.wa-widget {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.wa-bubble {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(28,26,23,0.14);
  border-radius: 10px;
  padding: 16px 18px;
  max-width: 260px;
  position: relative;
}

.wa-bubble.visible { display: block; }

.wa-bubble-close {
  position: absolute;
  top: 6px;
  right: 8px;
  border: none;
  background: none;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.wa-bubble p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 12px;
}

.wa-bubble-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  padding: 9px 14px;
  border-radius: 6px;
  text-decoration: none;
}

.wa-bubble-cta:hover { opacity: 0.92; }

.wa-launcher {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(28,26,23,0.25);
  cursor: pointer;
  border: none;
}

.wa-launcher svg { width: 28px; height: 28px; }

.contact-methods {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.contact-methods a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.policy-list {
  text-align: left;
  counter-reset: policy;
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li {
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 22px;
  padding-left: 28px;
  position: relative;
  color: #2c2925;
}

.policy-list li::before {
  counter-increment: policy;
  content: counter(policy) ".";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: Georgia, serif;
}

.exhibitions-list {
  text-align: left;
}

.exhibition-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.exhibition-item:first-child {
  padding-top: 0;
}

.exhibition-item:last-child {
  border-bottom: none;
}

.exhibition-date {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}

.exhibition-item h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 19px;
  margin: 0 0 6px;
}

.exhibition-item h2 a {
  border-bottom: 1px solid transparent;
}

.exhibition-item h2 a:hover {
  border-bottom-color: var(--ink);
}

.exhibition-venue {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 10px;
}

.exhibition-item p:last-child {
  margin-bottom: 0;
}

.exhibition-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.exhibition-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #efeae1, #ded5c4);
}

.map-link {
  font-size: 12px;
  color: var(--ink);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 34px 24px 26px;
  text-align: center;
  font-size: 11.5px;
  color: var(--ink);
  line-height: 1.8;
}

.site-footer .socials {
  margin: 12px 0;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.site-footer .fine-print {
  margin-top: 18px;
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: #a49c8c;
}
