:root {
    --bg: #f5ede4;
  --bg-soft: #f9f2ea;
  --bg-card: #fffaf4;
  --accent: #b88a44;
  --accent-strong: #8c622b;
  --accent-soft: rgba(184, 138, 68, 0.12);
  --text-main: #3b2f23;
  --text-muted: #8a7a65;
  --shadow-soft: 0 24px 60px rgba(120, 93, 62, 0.2);
  --radius-lg: 18px;
  --radius-pill: 999px;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(
      circle at top right,
      rgba(224, 195, 146, 0.25) 0,
      transparent 55%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(193, 151, 102, 0.18) 0,
      transparent 60%
    ),
    var(--bg);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
}

.page-wrapper {
  max-width: 1100px;
  width: 100%;
  background: linear-gradient(135deg, #fdf7f0 0%, #f8efe5 50%, #fdf7f0 100%);
  border-radius: 26px;
  border: 1px solid rgba(214, 184, 140, 0.8);
  box-shadow: var(--shadow-soft);
  padding: 26px 22px 20px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  column-gap: 34px;
  row-gap: 24px;
}

@media (max-width: 900px) {
  .page-wrapper {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px 18px;
  }
}

@media (max-width: 480px) {
  .page-wrapper {
    padding: 18px 14px;
    border-radius: 20px;
  }
}

header {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 10px;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fdf7f0;
  border: 1px solid rgba(201, 167, 118, 0.9);
  box-shadow: 0 12px 28px rgba(184, 138, 68, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-mark img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
}

.brand-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #2e241b;
}

.brand-text span {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.hero {
  padding-top: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid rgba(201, 167, 118, 0.9);
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: var(--accent-strong);
  box-shadow: 0 10px 25px rgba(194, 152, 99, 0.34);
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18);
}

.hero h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 12px;
  color: #2b2218;
}

.hero h2 span {
  color: var(--accent-strong);
}

.hero p {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 34rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.hero p strong {
  color: #3b2f23;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.14s ease-out, box-shadow 0.14s ease-out,
    background 0.14s ease-out, border-color 0.14s ease-out;
  will-change: transform, box-shadow;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #c89b4b, #b88437);
  color: #fffdf7;
  box-shadow: 0 16px 36px rgba(168, 125, 49, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 19px 44px rgba(168, 125, 49, 0.68);
  background: linear-gradient(135deg, #b88437, #c89b4b);
}

.btn-outline {
  background: rgba(255, 252, 247, 0.98);
  color: #4b3c2d;
  border: 1px solid rgba(193, 161, 116, 0.9);
  box-shadow: 0 12px 28px rgba(190, 162, 126, 0.4);
}

.btn-outline:hover {
  background: #fffaf4;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(185, 155, 117, 0.55);
  border-color: rgba(158, 120, 72, 0.9);
}

.btn-icon-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.hero-subtext {
  margin-top: 22px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-subtext strong {
  color: #3b2f23;
  font-weight: 600;
}

.products-card {
  background: var(--bg-card);
  border-radius: 22px;
  border: 1px solid rgba(203, 172, 128, 0.7);
  padding: 16px 16px 14px;
  box-shadow: 0 18px 42px rgba(170, 131, 79, 0.28);
}

.products-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 6px;
}

.products-card-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #3b2f23;
}

.pill {
  font-size: 0.72rem;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(193, 159, 111, 0.9);
  color: #7a5d32;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 248, 236, 0.95);
  white-space: nowrap;
}

.pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b88437;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
  font-size: 0.8rem;
}

@media (max-width: 540px) {
  .category-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.category-item {
  padding: 8px 10px;
  border-radius: 12px;
  background: #fdf5eb;
  border: 1px solid rgba(214, 184, 140, 0.9);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.category-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b3c2d;
  font-weight: 500;
}


.features-section {
  grid-column: 1 / -1;
  margin-top: 32px;
  text-align: center;
}

.features-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #3b2f23;
  margin-bottom: 22px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.feature-card {
  background: #fffaf4;
  border: 1px solid rgba(203, 172, 128, 0.7);
  border-radius: 16px;
  padding: 24px 14px;
  box-shadow: 0 10px 22px rgba(170, 131, 79, 0.18);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b3c2d;
  line-height: 1.4;
}


.footer-note {
  grid-column: 1 / -1;
  margin-top: 16px;
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 6px;
  column-gap: 16px;
  align-items: center;
}

.address {
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.address strong {
  color: #4a3826;
}

.footer-note strong {
  color: #3b2f23;
  font-weight: 600;
}

.footer-note a {
  color: #b0751f;
  text-decoration: none;
}

.footer-note a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .footer-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
