:root {
  --cream: #fdf8f2;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #a07c45;
  --charcoal: #1a1a1a;
  --text-soft: #6b6056;
  --card-bg: #ffffff;
  --border: #ede3d6;
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 200;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-style: italic;
}

.logo span { font-style: normal; font-weight: 600; color: #fff; }

nav { display: flex; align-items: center; gap: 35px; }

nav a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav a:hover { color: var(--gold); }

.cart-badge {
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  vertical-align: middle;
}

/* HERO */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1000px;
  margin: 70px auto;
  padding: 0 40px;
  animation: fadeUp 0.8s ease both;
}

.hero-image-wrap {
  position: relative;
  flex-shrink: 0;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  z-index: 0;
}

.hero-image-wrap img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.18);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.hero-text h1 em { font-style: italic; color: var(--gold-dark); }

.hero-text p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.75;
  font-weight: 300;
  max-width: 340px;
  margin-bottom: 35px;
}

.hero-cta {
  display: inline-block;
  background: var(--charcoal);
  color: var(--gold-light);
  padding: 14px 32px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
  width: fit-content;
}

.hero-cta:hover { background: var(--gold); color: var(--charcoal); }

/* DIVIDER */
.divider {
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-dark);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* SEARCH */
.search-wrap {
  max-width: 500px;
  margin: 0 auto 50px;
  padding: 0 40px;
}

.search-wrap input {
  width: 100%;
  padding: 14px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.88rem;
  font-family: 'Jost', sans-serif;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.search-wrap input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.search-wrap input::placeholder { color: #bbb; }

/* GALLERY */
#collectie {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  padding: 0 40px;
}

.card {
  background: var(--card-bg);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s;
  position: relative;
  animation: fadeUp 0.7s ease both;
}

.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.card-img-wrap { position: relative; overflow: hidden; }

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.card:hover img { transform: scale(1.04); }

.card-content {
  padding: 20px 22px 22px;
  border-top: 1px solid var(--border);
}

.card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.price {
  font-size: 0.95rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 15px;
}

.add {
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}

.add:hover { background: var(--charcoal); color: var(--gold-light); }

.favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.92);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: #ccc;
  transition: all 0.3s;
  border: 1px solid var(--border);
  z-index: 2;
}

.favorite:hover { color: #e07070; transform: scale(1.1); }
.favorite.active { color: #d94f4f; }

/* CART */
#winkelwagen {
  max-width: 700px;
  margin: 0 auto 80px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 50px;
}

#winkelwagen h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.cart-subtitle {
  font-size: 0.8rem;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: block;
}

#cart-empty-msg {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-style: italic;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#cart-items { list-style: none; }

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.cart-item-price {
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-top: 2px;
}

.remove-btn {
  background: none;
  color: #ccc;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px 8px;
  transition: color 0.2s;
}

.remove-btn:hover { color: #d94f4f; }

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid var(--charcoal);
}

.total-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.total-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--charcoal);
}

.btn-whatsapp {
  margin-top: 25px;
  width: 100%;
  padding: 15px 20px;
  background: var(--charcoal);
  color: var(--gold-light);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp:hover { background: var(--gold); color: var(--charcoal); }

#payment-section { margin-top: 30px; }

#payment-section h3 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 15px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.lightbox.show { opacity: 1; pointer-events: auto; }

.lightbox img {
  max-width: 88%;
  max-height: 88%;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform 0.35s;
}

.lightbox.show img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: rgba(255,255,255,0.45);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-close:hover { color: white; }

/* FOOTER */
footer {
  background: var(--charcoal);
  color: #555;
  text-align: center;
  padding: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

footer span { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
/* HEADER */
.header {
    background: #111;
    color: white;
    padding: 15px;
    font-size: 18px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  header { padding: 15px 25px; }
  .hero-section { flex-direction: column; align-items: center; gap: 30px; padding: 0 25px; margin: 40px auto; }
  .hero-image-wrap img { width: 260px; height: 340px; }
  .hero-text { padding-top: 0; text-align: center; align-items: center; }
  .hero-text h1 { font-size: 2.4rem; }
  #winkelwagen { padding: 30px 25px; margin: 0 20px 60px; }
  #collectie { padding: 0 20px; gap: 20px; }
}
/* ACCOUNT */
.account-container {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 25px;
}

.section-title {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #777;
  margin: 30px 0 15px;
}

/* CARDS */
.card {
  background: white;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 15px;
  border: 1px solid #eee;
}

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

.user-name {
  font-weight: 500;
}

.user-sub {
  font-size: 0.8rem;
  color: #888;
}

/* ORDER */
.order-card {
  transition: 0.2s;
}

.order-card:hover {
  transform: translateY(-2px);
}

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

.order-id {
  font-weight: 600;
}

.order-date {
  font-size: 0.8rem;
  color: #888;
}

.order-items {
  margin: 15px 0;
}

.product {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}

.more {
  font-size: 12px;
  color: #888;
}

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

.total {
  font-size: 1.2rem;
  font-weight: 600;
}

/* BUTTONS */
.btn {
  background: black;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
}

.btn-outline {
  border: 1px solid black;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: black;
  font-size: 13px;
}

/* STATUS */
.status {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  color: white;
  text-transform: uppercase;
}

.paid { background: green; }
.pending { background: orange; }
.cancelled, .expired { background: red; }

/* WARNING */
.warning {
  background: #fff3cd;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
}

.warning .btn {
  display: inline-block;
  margin-top: 8px;
}

/* EMPTY */
.empty {
  text-align: center;
  color: #888;
}

/* MOBILE */
@media (max-width: 600px) {
  .order-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}