@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --bg: #f5efe6;
  --ink: #1f1f1f;
  --muted: #5b5b5b;
  --accent: #e06a2c;
  --accent-2: #2a8a72;
  --card: #fffaf3;
  --shadow: 0 20px 45px rgba(31, 31, 31, 0.12);
  --shadow-lg: 0 25px 60px rgba(31, 31, 31, 0.15);
  --shadow-sm: 0 4px 12px rgba(31, 31, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Prompt', 'Space Grotesk', system-ui, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #f6f8fa 0%, #e0f2fe 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
.product-card {
  box-shadow: 0 4px 24px 0 rgba(31, 41, 55, 0.10);
  border-radius: 1.2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 32px 0 rgba(31, 41, 55, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.btn-main {
  background: linear-gradient(90deg, #1f7a63 0%, #4fd1c5 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 0.7rem;
  box-shadow: 0 2px 8px 0 rgba(31,41,55,0.10);
  padding: 0.6rem 2.2rem;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-main:hover {
  background: linear-gradient(90deg, #178a63 0%, #38b2ac 100%);
  box-shadow: 0 4px 16px 0 rgba(31,41,55,0.16);
}

.badge-custom {
  background: linear-gradient(135deg, #1f7a63, #4fd1c5);
  color: #fff;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 4px 0 rgba(31,41,55,0.10);
}

@media (max-width: 600px) {
  .product-card { padding: 0.7rem 0.5rem 0.8rem 0.5rem; min-height: 220px; }
  .btn-main { font-size: 0.95rem; padding: 0.5rem 1.2rem; }
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 20px 80px;
  position: relative;
  z-index: 1;
}

.bg-orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
}

.orb-1 {
  background: linear-gradient(135deg, #f9c59b, #fab86f);
  top: -120px;
  right: -80px;
  animation-delay: 0s;
}

.orb-2 {
  background: linear-gradient(135deg, #9cd0b9, #7eccac);
  bottom: -140px;
  left: -120px;
  animation-delay: 2s;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--accent-2);
  margin: 0 0 12px;
  font-weight: 600;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--ink) 0%, #4a4a4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

button {
  border: none;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent) 0%, #d25a1f 100%);
  color: white;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(224, 106, 44, 0.25);
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(224, 106, 44, 0.35);
}

button:active {
  transform: translateY(-1px);
}

button.ghost {
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(31, 31, 31, 0.15);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(31, 31, 31, 0.08);
  backdrop-filter: blur(10px);
}

button.ghost:hover {
  background: white;
  border-color: rgba(31, 31, 31, 0.2);
  box-shadow: 0 8px 20px rgba(31, 31, 31, 0.12);
}

.status {
  font-size: 13px;
  color: var(--muted);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 31, 31, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hero-card h3 {
  margin: 0 0 16px;
  font-family: "Fraunces", serif;
  font-size: 18px;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.hero-card li {
  padding-left: 20px;
  position: relative;
}

.hero-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: bold;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.section-title h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 28px;
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 9px 16px;
  border-radius: 999px;
  color: black;
  background: white;
  border: 1.5px solid rgba(31, 31, 31, 0.1);
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-sm);
}

.chip:hover {
  border-color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(42, 138, 114, 0.15);
}

.chip.active {
  background: linear-gradient(135deg, var(--accent-2) 0%, #1f7a63 100%);
  color: white;
  border-color: var(--accent-2);
  box-shadow: 0 8px 20px rgba(42, 138, 114, 0.25);
  transform: translateY(-2px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31, 31, 31, 0.05);
  animation: fadeUp 0.5s ease both;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 31, 31, 0.15);
}

.card:hover::before {
  opacity: 1;
}

.media {
  background: linear-gradient(135deg, #ffd7b5, #f5f0c1, #b8e1d0);
  border-radius: 16px;
  padding: 12px;
  min-height: 160px;
  display: grid;
  align-items: center;
  text-align: center;
  font-weight: 600;
  color: rgba(31, 31, 31, 0.75);
  position: relative;
  overflow: hidden;
  font-size: 14px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.card:hover .media img {
  transform: scale(1.05);
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(224, 106, 44, 0.12), rgba(224, 106, 44, 0.08));
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(224, 106, 44, 0.2);
}

.card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 18px;
  line-height: 1.2;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--accent);
  font-weight: bold;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@media (max-width: 768px) {
  .page {
    padding: 40px 16px 60px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h1 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .hero {
    gap: 16px;
  }

  h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .lead {
    font-size: 14px;
  }

  button {
    padding: 9px 18px;
    font-size: 13px;
  }

  .chip {
    padding: 7px 12px;
    color: black;
    font-size: 12px;
  }

  .card {
    padding: 16px;
    gap: 12px;
  }

  .card h3 {
    font-size: 16px;
  }

  .media {
    min-height: 140px;
  }
}
