:root {
  --cream: #f7f2ed;
  --ink: #201c19;
  --accent: #e07a5f;
  --accent-dark: #c7644d;
  --sage: #7a8f7a;
  --gold: #f2c37c;
  --shadow: 0 20px 40px rgba(32, 28, 25, 0.15);
  --radius-lg: 28px;
  --radius-md: 18px;
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top left, #fff7ec 0%, #f6efe7 40%, #efe4d7 100%);
  color: var(--ink);
  line-height: 1.6;
}

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 242, 237, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(32, 28, 25, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.brand h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav a:hover {
  background: rgba(32, 28, 25, 0.08);
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary.small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(32, 28, 25, 0.2);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
  margin-left: 6px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 64px 6vw;
  align-items: center;
}

.hero-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin: 16px 0;
}

.hero-content p {
  max-width: 520px;
}

.eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stats strong {
  font-size: 1.4rem;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.card-feature {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 320px;
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.tag {
  display: inline-flex;
  background: rgba(224, 122, 95, 0.15);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.8;
  animation: pulse 8s ease-in-out infinite;
}

.orb-one {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #ffd4a3, #f2c37c);
  top: 20px;
  left: 10%;
}

.orb-two {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #b4c7b4, #7a8f7a);
  bottom: 20px;
  right: 18%;
  animation-delay: 2s;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 16px 6vw 56px;
}

.benefits article {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.collections {
  padding: 20px 6vw 56px;
}

.collections header {
  margin-bottom: 24px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.collection-card {
  background: linear-gradient(135deg, #fff, #fdf3e7);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
}

.catalog {
  padding: 20px 6vw 60px;
}

.catalog header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(32, 28, 25, 0.2);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter.active,
.filter:hover {
  background: var(--ink);
  color: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.6s ease both;
}

.product-image {
  height: 190px;
  background: linear-gradient(135deg, #f6d4c6, #f0c5a4);
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.product-body {
  padding: 20px;
  display: grid;
  gap: 8px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-meta span {
  font-size: 0.85rem;
  color: var(--sage);
}

.price {
  font-weight: 700;
}

.cta {
  margin: 40px 6vw 60px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #201c19, #3b302b);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-form input {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  min-width: 220px;
  font-family: inherit;
}

.footer {
  padding: 32px 6vw 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  background: #1c1917;
  color: #f5efe8;
}

.cart {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(360px, 90vw);
  background: white;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 30;
}

.cart.open {
  transform: translateX(0);
}

.cart-items {
  flex: 1;
  display: grid;
  gap: 12px;
  overflow-y: auto;
}

.cart-item {
  border: 1px solid rgba(32, 28, 25, 0.1);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 40;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
  }
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cta {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 40px;
  }
  .catalog header {
    flex-direction: column;
    align-items: flex-start;
  }
}
