:root {
  --brand: #e63946;
  --ink: #111827;
  --muted: #6b7280;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header / Footer */
header {
  background: #000;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

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

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

.logo {
  width: 150px;
  height: auto;
  display: block;
}

.site-title {
  color: var(--brand);
  font-weight: 800;
  font-size: 18px;
  margin: 0;
}

.top-contact {
  margin-left: auto;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111;
  transition: .2s;
  min-width: 150px;
  justify-content: center;
  font-size: 14px;
}

.action.small {
  padding: 6px 10px;
  min-width: auto;
}

.action.primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.action:hover {
  transform: translateY(-2px);
}

footer {
  background: #000;
  color: #a3a3a3;
  text-align: center;
  padding: 12px 10px;
  font-size: 12px;
}

/* Hero */
.hero {
  background: #fff;
  color: var(--ink);
  text-align: center;
  padding: 26px 0 10px;
  border-bottom: 1px solid #eee;
}

.hero h1 {
  color: var(--brand);
  margin: 6px 0 6px;
  font-size: 28px;
}

.hero .subtitle {
  color: #4b5563;
  margin: 0;
  font-size: 14px;
}

/* Main */
main {
  padding: 22px 0 60px;
  background: #fff;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .04);
}

.grid {
  display: grid;
  gap: 18px;
}

@media(min-width:900px) {
  .grid-2 {
    grid-template-columns: 1.15fr .85fr;
  }
}

.address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin: 4px 0 12px;
}

.row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Categories */
.columns {
  display: grid;
  gap: 18px;
  margin-top: 14px;
}
@media (min-width: 900px) {
  .columns { grid-template-columns: repeat(3, 1fr); }
}

.feature {
  padding: 0;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  overflow: hidden;
}

/* Consistent image boxes */
.feature .photo {
  aspect-ratio: 16 / 10;        /* keeps same ratio for all */
  overflow: hidden;
}

.feature .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* fills & crops */
  object-position: center;      /* crop from center */
  display: block;
  background: #fff;
}

/* Special tweaks for tall/narrow product shots */
.feature .photo img[src*="detox"],
.feature .photo img[src*="70h"] {
  object-position: center 30%;  /* shift crop upward */
}

.feature .content { padding: 14px; }
.feature h3 { margin: 0 0 6px; font-size: 18px; color: #111827; }
.feature p  { margin: 0; font-size: 14px; color: #374151; }

.tag {
  display: inline-block;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 4px 8px;
  margin: 8px 6px 0 0;
  font-size: 12px;
  color: #374151;
}

.notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 10px;
  padding: 10px;
  margin: 12px 0 2px;
  font-size: 14px;
}

/* Map */
.map iframe {
  border: 0;
  width: 100%;
  height: 260px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

/* Socials */
.icon {
  width: 22px;
  height: 22px;
  display: inline-block;
}

.socials {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  margin-top: 14px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: .2s;
}

.socials a:hover {
  transform: translateY(-2px);
}
