html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222222;
  background-color: #FAFAFA;
  line-height: 1.6;
  hyphens: auto;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin-top: 0;
  color: #2B2A28;
}

p {
  margin-top: 0;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-link img {
  border-radius: 999px;
}

.logo-text {
  text-transform: uppercase;
  font-size: 0.9rem;
}

.menu-toggle {
  border: none;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.main-nav {
  position: fixed;
  inset: 0 0 auto;
  /* top: 56px; */
  background: rgba(250, 250, 250, 0.98);
  transform: translateY(-120%);
  transition: transform 0.25s ease;
}

.main-nav.open {
  transform: translateY(0);
  top: 100%;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a.active {
  color: #FFB300;
}

.btn-nav {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background-color: #FFB300;
  color: #2B2A28;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.filter-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background-color: #FFB300;
  color: #2B2A28;
  padding: 0.75rem 1.4rem;
  box-shadow: 0 10px 18px rgba(255, 179, 0, 0.3);
}

.btn-secondary {
  background-color: #8BC34A;
  color: #1E1E1E;
  padding: 0.7rem 1.3rem;
}

.btn-ghost {
  background-color: transparent;
  color: #2B2A28;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.65rem 1.2rem;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.filter-reset:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.btn-primary:active,
.btn-secondary:active,
.btn-ghost:active,
.filter-reset:active {
  transform: translateY(0);
  box-shadow: none;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 40%, #FFF5E2 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.hero {
  padding: 4rem 0 3.5rem;
  background: radial-gradient(circle at top, rgba(255, 179, 0, 0.2), transparent 55%), radial-gradient(circle at bottom, rgba(139, 195, 74, 0.15), transparent 55%), #FAFAFA;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background-color: rgba(255, 179, 0, 0.12);
  color: #8C5A00;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.hero h1 {
  font-size: 2rem;
  margin: 0.9rem 0 0.75rem;
}

.hero p {
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
  font-size: 0.9rem;
}

.hero-meta div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-meta i {
  color: #8BC34A;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.hero-image-wrapper {
  position: relative;
  max-width: 320px;
}

.hero-image {
  border-radius: 1.8rem;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.candle-glow {
  position: absolute;
  inset: 18% 10% auto;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 0, rgba(255, 179, 0, 0.7), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.8;
  animation: flicker 1.8s infinite alternate ease-in-out;
  pointer-events: none;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  text-align: center;
  font-size: 0.9rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  color: #FFB300;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.product-card {
  background-color: #FFFFFF;
  border-radius: 1.1rem;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.6rem;
}

.product-image {
  border-radius: 0.9rem;
  margin-bottom: 0.75rem;
}

.product-notes {
  font-size: 0.95rem;
}

.product-meta {
  font-size: 0.85rem;
  color: #555555;
}

.product-price {
  font-weight: 600;
  margin-top: 0.4rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.collection-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.collection-list li strong {
  display: block;
}

.collections-images {
  display: flex;
  justify-content: center;
}

.image-stack {
  position: relative;
  width: min(320px, 100%);
  height: 260px;
}

.stack-image {
  position: absolute;
  border-radius: 1.4rem;
  width: 70%;
  object-fit: cover;
}

.stack-image-top {
  top: 0;
  left: 8%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.stack-image-bottom {
  right: 4%;
  bottom: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.wax-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.wax-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.wax-icons div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wax-icons i {
  color: #FFB300;
}

.rounded-image {
  border-radius: 1.6rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.sustainability-list {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 1.3rem 0;
}

.newsletter-section {
  background: #111111;
  color: #F8F8F8;
}

.newsletter-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.newsletter-text h2 {
  color: #FFB300;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input-group input {
  flex: 1;
}

.newsletter-hint {
  font-size: 0.8rem;
  color: #CCCCCC;
}

.site-footer {
  background: #111111;
  color: #E6E6E6;
  padding: 2.75rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  font-size: 0.9rem;
}

.footer-links h3 {
  color: #FFB300;
}

.footer-contact h3 {
  color: #FFB300;
}

.footer-meta h3 {
  color: #FFB300;
}

.footer-brand p {
  max-width: 22rem;
}

.footer-contact a,
.footer-links a,
.footer-meta a {
  color: #E6E6E6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: #A8A8A8;
}

.page-main {
  padding-top: 0.75rem;
}

.page-hero {
  padding: 2.7rem 0 1.75rem;
  background: linear-gradient(135deg, #FFF7E4 0%, #FAFAFA 60%, #EAF7E1 100%);
}

.page-hero h1 {
  margin-bottom: 0.6rem;
}

.page-hero p {
  max-width: 36rem;
}

.page-hero .legal-updated {
  font-size: 0.85rem;
  color: #555555;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
}

.shop-filters h2 {
  font-size: 1.2rem;
}

.filter-group {
  margin-top: 1.2rem;
}

.filter-group h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background-color: #FFFFFF;
  font-size: 0.8rem;
  margin: 0.18rem;
  cursor: pointer;
}

.filter-chip.active {
  background-color: #FFB300;
  border-color: #FFB300;
}

.filter-reset {
  margin-top: 1.4rem;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  gap: 0.4rem;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.shop-sort select {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  background-color: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.values-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.value-card {
  background-color: #FFFFFF;
  border-radius: 1.1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.value-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.about-cta {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form-wrapper,
.contact-details {
  background-color: #FFFFFF;
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
textarea {
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #FFFFFF;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(255, 179, 0, 0.7);
  outline-offset: 1px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
}

.form-hint {
  font-size: 0.8rem;
  color: #666666;
}

.full-width {
  width: 100%;
}

.contact-info-block {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.contact-info-block p {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.contact-info-block i {
  color: #FFB300;
}

.map-embed {
  margin-top: 1.25rem;
}

.map-embed iframe {
  width: 100%;
  border-radius: 1rem;
}

.section-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
}

.thankyou-wrapper {
  text-align: center;
  max-width: 420px;
}

.thankyou-icon {
  font-size: 2.6rem;
  color: #FFB300;
  margin-bottom: 0.75rem;
}

.thankyou-actions {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-page .section {
  padding-bottom: 4rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
}

@keyframes flicker {
  0% {
    opacity: 0.75;
    transform: translateY(0);
  }

  40% {
    opacity: 0.95;
    transform: translateY(-1px);
  }

  60% {
    opacity: 0.8;
    transform: translateY(1px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .hero-inner {
    gap: 2.75rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .newsletter-text {
    max-width: 340px;
  }

  .newsletter-input-group {
    flex-direction: row;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0.85rem 0;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    transform: none;
    background: transparent;
  }

  .main-nav ul {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 1.5rem;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1.15;
  }

  .hero-visual {
    flex: 0.95;
  }

  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collections-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .wax-grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .sustainability-grid {
    grid-template-columns: 1fr 1.15fr;
  }

  .shop-layout {
    grid-template-columns: 0.9fr 2.1fr;
  }

  .about-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.1fr 1.2fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 4.5rem 0 4rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-inner {
    gap: 3.5rem;
  }

  .hero-image-wrapper {
    max-width: 360px;
  }

  .section {
    padding: 4.2rem 0;
  }
}