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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #2c2c2c;
  line-height: 1.7;
  background: #faf9f7;
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: #2c1810;
  color: #d4a574;
  text-align: center;
  padding: 0.5rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  position: relative;
}

.announcement-bar .close-announcement {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #d4a574;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.25rem;
  opacity: 0.7;
}

.announcement-bar .close-announcement:hover { opacity: 1; }

/* ── Navigation ── */
nav {
  background: #1a1a1a;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .brand {
  color: #d4a574;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
}

nav .nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
nav .nav-links a { color: #b0b0b0; text-decoration: none; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 0.9rem; letter-spacing: 0.3px; text-transform: uppercase; transition: color 0.2s; }
nav .nav-links a:hover { color: #d4a574; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #d4a574;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: #999;
}

.breadcrumbs a { color: #888; text-decoration: none; }
.breadcrumbs a:hover { color: #8b5e3c; }
.breadcrumbs .separator { margin: 0 0.4rem; color: #ccc; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 40%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a574' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero > * { position: relative; z-index: 1; }

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.85;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* ── Buttons ── */
.cta-primary {
  background: #d4a574;
  color: #1a1a1a;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.cta-primary:hover { background: #c4955e; transform: translateY(-1px); }

.cta-secondary {
  background: transparent;
  color: #d4a574;
  border: 2px solid #d4a574;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.cta-secondary:hover { background: #d4a574; color: #1a1a1a; }

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  border: 1px solid #e8e4df;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}

.product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #f0ece6;
}

.product-card .info { padding: 1.25rem; }
.product-card .info h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.product-card .info .price { color: #8b5e3c; font-weight: 700; font-size: 1.2rem; }
.product-card .info .description { color: #777; font-size: 0.9rem; margin-top: 0.4rem; font-family: -apple-system, sans-serif; }
.product-card .info a { display: inline-block; margin-top: 0.75rem; color: #8b5e3c; text-decoration: none; font-weight: 600; font-family: -apple-system, sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
.product-card .info a:hover { color: #6b4530; }

/* ── Product Detail ── */
.product-detail {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.product-detail .gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.product-detail .gallery .main-image {
  width: 100%;
  border-radius: 4px;
  background: #f0ece6;
  height: 400px;
  object-fit: cover;
}

.product-detail .gallery .thumbnails { display: flex; gap: 0.5rem; }
.product-detail .gallery .thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f0ece6;
  transition: border-color 0.2s;
}
.product-detail .gallery .thumbnails img:hover,
.product-detail .gallery .thumbnails img.active { border-color: #d4a574; }

.product-detail img {
  width: 100%;
  border-radius: 4px;
  background: #f0ece6;
  height: 400px;
  object-fit: cover;
}

.product-detail .details h1 { margin-bottom: 0.5rem; font-size: 2rem; }
.product-detail .details .price { color: #8b5e3c; font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
.product-detail .details p { margin-bottom: 1.5rem; color: #666; font-family: -apple-system, sans-serif; }
.product-detail .details .meta { font-size: 0.85rem; color: #999; margin-bottom: 1rem; font-family: -apple-system, sans-serif; }

/* ── Star Ratings ── */
.star-rating { color: #d4a574; font-size: 1.2rem; margin-bottom: 0.5rem; letter-spacing: 2px; }
.star-rating .rating-text { font-size: 0.85rem; color: #999; font-family: -apple-system, sans-serif; letter-spacing: 0; margin-left: 0.5rem; }

/* ── Variant Picker ── */
.variant-picker { margin-bottom: 1.5rem; }
.variant-picker .variant-label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: -apple-system, sans-serif;
  font-size: 0.85rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.variant-picker .variant-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.variant-picker .variant-options label {
  display: block;
  padding: 0.5rem 1rem;
  border: 1px solid #d0ccc6;
  border-radius: 3px;
  cursor: pointer;
  font-family: -apple-system, sans-serif;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.variant-picker .variant-options label:hover { border-color: #8b5e3c; }
.variant-picker .variant-options input[type="radio"] { display: none; }
.variant-picker .variant-options input[type="radio"]:checked + label {
  background: #2c1810;
  color: #fff;
  border-color: #2c1810;
}

/* ── Quantity Selector ── */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

.quantity-selector button {
  width: 36px;
  height: 36px;
  border: 1px solid #d0ccc6;
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  font-family: -apple-system, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.quantity-selector button:hover { background: #f0ece6; }
.quantity-selector button:first-child { border-radius: 3px 0 0 3px; }
.quantity-selector button:last-child { border-radius: 0 3px 3px 0; }

.quantity-selector .qty-value {
  width: 48px;
  height: 36px;
  border: 1px solid #d0ccc6;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 1rem;
  font-family: -apple-system, sans-serif;
  line-height: 36px;
}

/* ── Trust Badges ── */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e8e4df;
  margin-top: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: -apple-system, sans-serif;
  font-size: 0.8rem;
  color: #777;
}

.trust-badge .badge-icon { font-size: 1.1rem; }

/* ── Reviews ── */
.reviews-section {
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.reviews-section h2 { margin-bottom: 1.5rem; font-size: 1.5rem; }

.review {
  border-bottom: 1px solid #e8e4df;
  padding: 1.5rem 0;
}

.review:last-child { border-bottom: none; }

.review .review-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.review .review-author { font-weight: 700; font-size: 1rem; }
.review .review-date { font-family: -apple-system, sans-serif; font-size: 0.8rem; color: #999; }
.review .review-rating { color: #d4a574; margin-bottom: 0.5rem; }
.review .review-text { color: #666; font-family: -apple-system, sans-serif; font-size: 0.95rem; line-height: 1.6; }

/* ── Related Products ── */
.related-products {
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.related-products h2 { margin-bottom: 1.5rem; font-size: 1.5rem; }
.related-products .products-grid { padding: 0; }

/* ── Section Headers ── */
.section-title {
  text-align: center;
  font-size: 2rem;
  padding: 2.5rem 0 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.section-subtitle {
  text-align: center;
  color: #888;
  font-family: -apple-system, sans-serif;
  font-size: 1rem;
  padding: 0.5rem 2rem 0;
}

/* ── Collection Banner ── */
.collection-banner {
  background: linear-gradient(135deg, #2c1810, #4a2c1a);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.collection-banner h1 { font-size: 2.5rem; font-weight: 400; margin-bottom: 0.5rem; }
.collection-banner p { opacity: 0.8; font-family: -apple-system, sans-serif; }

/* ── Collection Layout (sidebar + grid) ── */
.collection-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
}

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #777;
}

.collection-toolbar select {
  padding: 0.4rem 0.8rem;
  border: 1px solid #d0ccc6;
  border-radius: 3px;
  font-family: -apple-system, sans-serif;
  font-size: 0.85rem;
  background: #fff;
}

/* ── Filter Sidebar ── */
.filter-sidebar h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: -apple-system, sans-serif;
  font-size: 0.85rem;
}

.filter-group { margin-bottom: 1.5rem; }
.filter-group h4 {
  font-size: 0.85rem;
  font-family: -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  color: #555;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.4rem;
  cursor: pointer;
}

.filter-group input[type="checkbox"] { accent-color: #8b5e3c; }

/* ── Pagination ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  padding: 2rem 0;
  font-family: -apple-system, sans-serif;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  border: 1px solid #d0ccc6;
  border-radius: 3px;
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.pagination a:hover { border-color: #8b5e3c; color: #8b5e3c; }
.pagination .active { background: #2c1810; color: #fff; border-color: #2c1810; }
.pagination .ellipsis { border: none; color: #999; }

/* ── Thank You ── */
.thank-you {
  text-align: center;
  padding: 5rem 2rem;
}

.thank-you h1 { font-size: 2.5rem; color: #5a8f5a; margin-bottom: 1rem; }
.thank-you p { font-size: 1.1rem; color: #666; margin-bottom: 1.5rem; font-family: -apple-system, sans-serif; max-width: 500px; margin-left: auto; margin-right: auto; }
.thank-you .order-number { font-size: 1.3rem; font-weight: 700; color: #2c2c2c; margin-bottom: 2rem; }

/* ── Cart ── */
.cart-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e8e4df;
}

.cart-item img { width: 100px; height: 100px; object-fit: cover; border-radius: 4px; background: #f0ece6; }
.cart-item .item-details { flex: 1; }
.cart-item .item-details h3 { margin-bottom: 0.25rem; }
.cart-item .item-details .price { color: #8b5e3c; font-weight: 700; }
.cart-item .qty { font-family: -apple-system, sans-serif; color: #666; }

.cart-item .item-qty { display: flex; align-items: center; gap: 0; }
.cart-item .item-qty button {
  width: 30px; height: 30px; border: 1px solid #d0ccc6; background: #fff;
  cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center;
}
.cart-item .item-qty button:first-child { border-radius: 3px 0 0 3px; }
.cart-item .item-qty button:last-child { border-radius: 0 3px 3px 0; }
.cart-item .item-qty span {
  width: 36px; height: 30px; border: 1px solid #d0ccc6; border-left: none; border-right: none;
  text-align: center; line-height: 30px; font-family: -apple-system, sans-serif; font-size: 0.9rem;
}

.cart-item .remove-item {
  background: none; border: none; color: #c44; cursor: pointer; font-size: 0.8rem;
  font-family: -apple-system, sans-serif; text-decoration: underline; padding: 0.25rem;
}
.cart-item .remove-item:hover { color: #a00; }

.cart-summary {
  padding: 2rem 0;
  text-align: right;
}

.cart-summary-lines { margin-bottom: 1rem; font-family: -apple-system, sans-serif; font-size: 0.95rem; }
.cart-summary-lines .line { display: flex; justify-content: flex-end; gap: 2rem; margin-bottom: 0.4rem; color: #666; }
.cart-summary-lines .line span:last-child { min-width: 80px; text-align: right; }
.cart-summary .total { font-size: 1.5rem; margin-bottom: 1.5rem; }
.cart-summary .total span { color: #8b5e3c; font-weight: 700; }

.discount-code {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.discount-code input {
  padding: 0.6rem 0.8rem;
  border: 1px solid #d0ccc6;
  border-radius: 3px;
  font-family: -apple-system, sans-serif;
  font-size: 0.9rem;
  width: 200px;
}

.discount-code button {
  padding: 0.6rem 1rem;
  background: #f0ece6;
  border: 1px solid #d0ccc6;
  border-radius: 3px;
  cursor: pointer;
  font-family: -apple-system, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.discount-code button:hover { background: #e8e4df; }

/* ── Checkout ── */
.checkout-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
}

.checkout-page h1 { margin-bottom: 2rem; grid-column: 1 / -1; }

.checkout-form-area {}

.checkout-steps {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  font-family: -apple-system, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkout-steps .step { color: #ccc; }
.checkout-steps .step.active { color: #2c2c2c; font-weight: 700; }
.checkout-steps .step-separator { color: #ccc; }

.order-summary-sidebar {
  background: #f7f5f2;
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid #e8e4df;
  align-self: start;
  position: sticky;
  top: 80px;
}

.order-summary-sidebar h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e8e4df;
}

.order-summary-sidebar .summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-family: -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #666;
}

.order-summary-sidebar .summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e8e4df;
  font-weight: 700;
  font-size: 1.1rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-family: -apple-system, sans-serif; font-size: 0.9rem; color: #555; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #d0ccc6;
  border-radius: 3px;
  font-size: 1rem;
  font-family: -apple-system, sans-serif;
  background: #fff;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Content Pages ── */
.content-page {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.content-page h1 { margin-bottom: 1.5rem; font-size: 2.2rem; }
.content-page h2 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.5rem; }
.content-page p { margin-bottom: 1rem; color: #555; font-family: -apple-system, sans-serif; line-height: 1.8; }
.content-page ul, .content-page ol { margin-bottom: 1rem; padding-left: 1.5rem; color: #555; font-family: -apple-system, sans-serif; }
.content-page li { margin-bottom: 0.5rem; }

.content-page .blog-meta { color: #999; font-size: 0.9rem; margin-bottom: 2rem; font-family: -apple-system, sans-serif; }

/* ── FAQ Accordion ── */
.faq-list { margin-top: 1rem; }
.faq-list details {
  border-bottom: 1px solid #e8e4df;
  padding: 1rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 0.5rem;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 1.3rem; color: #8b5e3c; font-weight: 400; }
.faq-list details[open] summary::after { content: '-'; }

.faq-list details p {
  margin-top: 0.75rem;
  padding-right: 2rem;
}

/* ── Login / Account ── */
.login-page {
  max-width: 440px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.login-page h1 { margin-bottom: 0.5rem; font-size: 2rem; text-align: center; }
.login-page .login-subtitle { text-align: center; color: #888; font-family: -apple-system, sans-serif; margin-bottom: 2rem; }

.login-tabs {
  display: flex;
  border-bottom: 2px solid #e8e4df;
  margin-bottom: 2rem;
}

.login-tabs button {
  flex: 1;
  padding: 0.75rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  font-family: -apple-system, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  transition: all 0.2s;
}

.login-tabs button.active { color: #2c2c2c; border-bottom-color: #d4a574; font-weight: 700; }

/* ── Search ── */
.search-page {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.search-page h1 { margin-bottom: 0.5rem; }
.search-page .search-meta { color: #888; font-family: -apple-system, sans-serif; font-size: 0.95rem; margin-bottom: 2rem; }

.search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin-bottom: 2rem;
}

.search-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid #d0ccc6;
  border-radius: 3px;
  font-size: 1rem;
  font-family: -apple-system, sans-serif;
}

.search-form button {
  padding: 0.8rem 1.5rem;
  background: #2c1810;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ── 404 ── */
.not-found {
  text-align: center;
  padding: 5rem 2rem;
}

.not-found .error-code { font-size: 6rem; color: #d4a574; font-weight: 700; line-height: 1; margin-bottom: 1rem; }
.not-found h1 { font-size: 2rem; margin-bottom: 1rem; }
.not-found p { color: #666; font-family: -apple-system, sans-serif; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── Newsletter ── */
.newsletter {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 3rem;
}

.newsletter h2 { font-size: 1.8rem; margin-bottom: 0.5rem; font-weight: 400; }
.newsletter p { color: #999; margin-bottom: 1.5rem; font-family: -apple-system, sans-serif; }

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 450px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid #444;
  background: #2a2a2a;
  color: #fff;
  border-radius: 3px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.8rem 1.5rem;
  background: #d4a574;
  color: #1a1a1a;
  border: none;
  border-radius: 3px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* ── Features Strip ── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 2rem;
  text-align: center;
}

.feature h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature p { color: #888; font-family: -apple-system, sans-serif; font-size: 0.9rem; }

/* ── Collections Grid ── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.collection-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 250px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
}

.collection-card .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
}

.collection-card .card-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

.collection-card h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.collection-card p { font-size: 0.9rem; opacity: 0.8; font-family: -apple-system, sans-serif; }

/* ── Contact Form ── */
.contact-form { margin-top: 2rem; }
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #d0ccc6;
  border-radius: 3px;
  font-size: 1rem;
  font-family: -apple-system, sans-serif;
  min-height: 150px;
  resize: vertical;
}

/* ── Footer ── */
footer {
  background: #1a1a1a;
  color: #777;
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-content h4 { color: #d4a574; margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-content p { font-size: 0.9rem; font-family: -apple-system, sans-serif; }
.footer-content ul { list-style: none; }
.footer-content li { margin-bottom: 0.5rem; }
.footer-content a { color: #777; text-decoration: none; font-family: -apple-system, sans-serif; font-size: 0.9rem; }
.footer-content a:hover { color: #d4a574; }

.footer-trust {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-family: -apple-system, sans-serif;
  font-size: 0.8rem;
  color: #666;
}

.footer-social {
  max-width: 1200px;
  margin: 1rem auto 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social a {
  color: #666;
  text-decoration: none;
  font-family: -apple-system, sans-serif;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-social a:hover { color: #d4a574; }

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.85rem;
  font-family: -apple-system, sans-serif;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .product-detail { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .collection-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .checkout-page { grid-template-columns: 1fr; }

  nav .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 1rem 2rem 2rem;
    gap: 1rem;
  }

  .menu-toggle { display: block; }

  body.nav-open nav .nav-links { display: flex; }
}
