* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fdfbfd;
  font-family: 'Playfair Display', Georgia, serif;
  color: #3d2733;
}
.frame {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  border: 1px solid #c98ab5;
  border-radius: 6px;
  overflow: hidden;
  margin: 10px;
  background: #fff;
}
header {
  background: #f6d9ec;
  padding: 14px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}
.brand { text-align: center; }
header h1 {
  margin: 0;
  color: #7b2440;
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1.1;
}
header .tagline {
  margin: 6px 0 0;
  color: #9c6b93;
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: absolute;
  top: 20px;
  right: 24px;
}
.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #c98ab5;
  border-radius: 999px;
  height: 42px;
  padding: 0;
  overflow: hidden;
  transition: width 0.25s ease;
  width: 42px;
}
.search-box.open { width: 240px; }
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.search-btn svg { stroke: #7b2440; }
.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  color: #3d2733;
  width: 0;
  padding: 0;
  transition: width 0.25s ease;
}
.search-box.open input { width: 100%; padding-right: 14px; }
.search-box input::placeholder { color: #b593ab; }
.search-box.open {
  border-color: #7b2440;
  box-shadow: 0 0 0 3px rgba(123, 36, 64, 0.1);
}
.search-box:not(.open):hover { background: #fbf4f9; }
.bell-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #c98ab5;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.bell-btn:hover { background: #fbf4f9; }
.bell-btn svg { stroke: #7b2440; }
.bell-btn .dot {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d94f70;
  border: 1.5px solid #fff;
}
.bell-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid #d9c9d6;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(123, 36, 64, 0.15);
  padding: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: #6d5260;
  width: 280px;
  z-index: 10;
}
.bell-menu .menu-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9c6b93;
  margin: 0 0 10px;
  padding: 0 4px;
}
.bell-menu .notif-list {
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bell-menu a.notif.notif-new {
  background: #fbf4f9;
  position: relative;
}
.bell-menu a.notif.notif-new::after {
  content: 'NEW';
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #fff;
  background: #d94f70;
  border-radius: 999px;
  padding: 2px 7px;
  margin-left: auto;
  flex-shrink: 0;
}
.bell-menu a.notif {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  padding: 6px;
  transition: background 0.15s ease;
}
.bell-menu a.notif:hover { background: #fbf4f9; }
.bell-menu .notif img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.bell-menu .notif h4 {
  margin: 0 0 3px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #7b2440;
  font-family: 'Playfair Display', Georgia, serif;
}
.bell-menu .notif p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.4;
  color: #8a6b7d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bell-wrap { position: relative; }
.bell-menu[hidden] { display: none; }
.no-results {
  display: none;
  text-align: center;
  color: #8a6b7d;
  font-style: italic;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding: 20px 0;
}
@media (max-width: 700px) {
  .brand { width: 100%; }
  .header-actions { position: static; margin: 4px auto 0; }
  .search-box.open { width: 200px; }
}
/* Nav bar */
.nav-bar {
  background: #fbf4f9;
  border-bottom: 1px solid #f0e4ec;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  padding: 12px 20px;
  flex-wrap: wrap;
}
.nav-bar a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b2440;
  text-decoration: none;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-bar a:hover {
  color: #9c6b93;
  border-bottom-color: #c98ab5;
}
/* Hero */
.hero {
  background: #fff;
  padding: 28px 28px 36px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: calc(100vh - 200px);
  min-height: 380px;
}
.hero-card {
  width: 100%;
  max-width: 1720px;
  border: 1px solid #d9c9d6;
  border-radius: 18px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 320px;
}
.hero-card img {
  display: block;
  width: min(38%, 520px);
  height: auto;
  max-height: 50%;
  object-fit: contain;
  object-position: left bottom;
  margin: 0 0 3% 2%;
}
.hero-placeholder { display: none; }
/* Products */
.products {
  padding: 24px 28px 64px;
  max-width: 1720px;
  margin: 0 auto;
  width: 100%;
}
.products h2 {
  color: #7b2440;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin: 0 0 8px;
}
.products .lede {
  text-align: center;
  color: #8a6b7d;
  font-size: 1rem;
  margin: 0 0 36px;
  font-style: italic;
}
/* Featured piece */
.featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid #d9c9d6;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 40px;
}
.featured video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  background: #f6f2f5;
}
.featured-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fbf4f9;
}
.featured-info .eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9c6b93;
  margin: 0 0 10px;
}
.featured-info h3 {
  margin: 0 0 12px;
  color: #7b2440;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
}
.featured-info p {
  margin: 0 0 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: #6d5260;
  line-height: 1.6;
}
.featured-info a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: #9c6b93;
  text-decoration: none;
}
.featured-info a:hover { text-decoration: underline; }
.featured-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #fbf4f9, #f0e0ee);
  padding: 24px;
  min-height: 320px;
}
.featured-media img {
  display: block;
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}
.featured-flip { grid-template-columns: 1fr 1.4fr; }
.featured-flip video { order: 2; }
.featured-flip .featured-info { order: 1; }
@media (max-width: 800px) {
  .featured { grid-template-columns: 1fr; }
  .featured-flip video { order: 0; }
  .featured-flip .featured-info { order: 1; }
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #d9c9d6;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(123, 36, 64, 0.12);
}
.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.product-info {
  padding: 14px 16px 18px;
  border-top: 1px solid #f0e4ec;
}
.product-info h3 {
  margin: 0 0 4px;
  color: #7b2440;
  font-size: 1.1rem;
  font-weight: 600;
}
.product-info p {
  margin: 0 0 8px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  color: #8a6b7d;
  line-height: 1.45;
}
.product-info .view {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  color: #9c6b93;
  letter-spacing: 0.03em;
}
/* About */
.about {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 28px 8px;
  text-align: center;
}
.about h2 {
  color: #7b2440;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 16px;
}
.about p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: #6d5260;
  line-height: 1.7;
  margin: 0 0 18px;
}
.about .quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #9c6b93;
  margin: 26px 0 0;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover { text-decoration: underline; }
footer .insta-link {
  display: inline-flex;
  vertical-align: middle;
  padding: 2px;
}
footer .insta-link svg { display: block; }
footer .insta-link:hover { opacity: 0.8; text-decoration: none; }
footer {
  margin-top: auto;
  background: #9c6b93;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 24px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
footer p { margin: 0; }
@media (max-width: 600px) {
  .hero { padding: 24px 14px; height: auto; min-height: 300px; }
  .products { padding: 16px 14px 48px; }
}
