/* ==========================================================================
   Geelong Terrariums - Design System
   Handcrafted botanical theme for a handcrafted business.
   ========================================================================== */

:root {
  --green-900: #142b20;
  --green-800: #1c3528;
  --green-700: #274a37;
  --green-600: #336047;
  --green-500: #4c7a5e;
  --green-300: #9bb8a5;
  --green-200: #c9dbce;
  --green-100: #e3ecdf;
  --green-50: #f1f5ee;

  --cream: #faf8f3;
  --white: #ffffff;

  --ink: #26322b;
  --ink-soft: #46534a;
  --muted: #6f7d74;
  --line: #dde4dc;

  --accent: #b5653a;
  --accent-soft: #efd9c8;

  --shadow-sm: 0 1px 3px rgba(28, 53, 40, 0.12);
  --shadow-md: 0 6px 20px rgba(28, 53, 40, 0.12);
  --shadow-lg: 0 18px 40px rgba(28, 53, 40, 0.18);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container: 1180px;
  --header-h: 76px;
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--green-50);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--green-800);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--green-600);
  text-decoration: none;
}

a:hover {
  color: var(--green-800);
}

ul, ol {
  padding-left: 1.25em;
}

address {
  font-style: normal;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--green {
  background: var(--green-100);
}

.section--local {
  background: var(--green-100);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.15s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  text-align: center;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--green-800);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-300);
}

.btn--outline:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

.btn--large {
  padding: 15px 34px;
  font-size: 16px;
}

.btn--small {
  padding: 8px 18px;
  font-size: 13px;
}

.btn--full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  max-width: none;
  padding-left: 0;
  padding-right: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 26px;
  background: var(--green-700);
}

.header__logo-img {
  width: 200px;
  height: auto;
}

.header__nav-list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-link {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}

.header__nav-link:hover {
  color: var(--green-700);
  background: var(--green-50);
}

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

.header__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.header__contact-btn--text {
  background: var(--green-50);
  color: var(--green-700);
}

.header__contact-btn--text:hover {
  background: var(--green-100);
}

.header__contact-btn--call {
  background: var(--green-700);
  color: var(--white);
}

.header__contact-btn--call:hover {
  background: var(--green-800);
}

.header__mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--green-800);
}

.header__menu-icon,
.header__close-icon {
  width: 26px;
  height: 26px;
}

.header__close-icon {
  display: none;
}

.header__mobile-nav {
  display: none;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  padding: 20px 0;
  background: linear-gradient(120deg, var(--green-50), var(--green-100));
}

.hero__content {
  max-width: 720px;
}

.hero__title {
  font-size: 54px;
  color: var(--green-700);
  margin-bottom: 18px;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  color: var(--green-600);
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 28px 0 16px;
  line-height: 1.6;
}

/* Full-width hero image band below the text section */
.hero-image {
  display: block;
  width: 100%;
  line-height: 0;
}

.hero-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   Section headers
   -------------------------------------------------------------------------- */

.section-header {
  margin-bottom: 40px;
}

.section-header--center {
  text-align: center;
}

.section-header__title {
  font-size: 38px;
  margin-bottom: 8px;
}

.section-header__subtitle {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 12px;
}

.section-header__link {
  display: inline-block;
  font-weight: 600;
  color: var(--green-600);
  border-bottom: 2px solid transparent;
}

.section-header__link:hover {
  border-bottom-color: var(--green-600);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: var(--ink);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__body {
  padding: 22px 26px 26px;
}

.card__title {
  font-size: 21px;
  margin-bottom: 6px;
}

.card__text {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Split content (home section)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.split__title {
  font-size: 30px;
  margin-bottom: 14px;
  color: var(--green-800);
}

.split__paragraph {
  color: var(--ink-soft);
  font-size: 17px;
}

.split__quote {
  border-left: 4px solid var(--green-500);
  padding: 4px 0 4px 20px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 19px;
  color: var(--green-700);
}

/* --------------------------------------------------------------------------
   Terrarium type blocks
   -------------------------------------------------------------------------- */

.terrarium-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 24px 0;
}

.terrarium-type__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.terrarium-type__media img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.terrarium-type__title {
  font-size: 32px;
  margin-bottom: 14px;
}

.terrarium-type__text {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 24px;
}

.terrarium-type--reverse .terrarium-type__media {
  order: 2;
}

/* --------------------------------------------------------------------------
   Local banner
   -------------------------------------------------------------------------- */

.local-banner {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 56px;
  align-items: center;
  background: var(--green-100);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.local-banner__map {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.local-banner__title {
  font-size: 32px;
  margin-bottom: 12px;
}

.local-banner__content p {
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   Product grid & card
   -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card__link {
  display: block;
  color: inherit;
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--green-100);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(28, 53, 40, 0.82);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product-card__content {
  padding: 18px 22px 22px;
}

.product-card__name {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--ink);
}

.product-card__reference {
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--green-700);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Category grid
   -------------------------------------------------------------------------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  color: var(--ink);
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}

.category-card__name {
  font-size: 22px;
  margin-bottom: 4px;
}

.category-card__description {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.cta {
  background: var(--green-800);
  padding: 80px 0;
}

.cta__content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta__title {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 10px;
}

.cta__description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 30px;
}

.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cta .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.cta .btn--outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--green-800);
}

/* --------------------------------------------------------------------------
   Page header (interior pages)
   -------------------------------------------------------------------------- */

.page-header {
  background: linear-gradient(120deg, var(--green-800), var(--green-600));
  color: var(--cream);
  padding: 64px 0;
}

.page-header__title {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 6px;
}

.page-header__subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  margin-bottom: 0;
}

.page-header__price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-soft);
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */

.breadcrumb {
  margin-bottom: 18px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb__list li + li::before {
  content: '/';
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb__link {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb__link:hover {
  color: var(--white);
  text-decoration: underline;
}

.breadcrumb__current {
  color: var(--white);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Shop
   -------------------------------------------------------------------------- */

.shop {
  padding: 56px 0 80px;
}

.shop__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
}

.shop__sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.shop__filter {
  margin-bottom: 32px;
}

.shop__filter-title {
  font-size: 17px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.shop__category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop__category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}

.shop__category-link:hover {
  background: var(--green-50);
  color: var(--green-800);
}

.shop__category-link.active {
  background: var(--green-700);
  color: var(--white);
  font-weight: 600;
}

.shop__category-count {
  font-size: 12px;
  font-weight: 600;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 999px;
  min-width: 24px;
  padding: 2px 8px;
  text-align: center;
}

.shop__category-link.active .shop__category-count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.shop__price-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.shop__price-input {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.shop__price-input input {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  color: var(--ink);
}

.shop__main {
  min-width: 0;
}

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

.shop__results-count {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.shop__sort-select {
  padding: 9px 36px 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231c3528' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.shop__empty {
  text-align: center;
  padding: 80px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.shop__empty-icon {
  width: 56px;
  height: 56px;
  color: var(--green-500);
  margin: 0 auto 16px;
}

.shop__empty-title {
  font-size: 24px;
}

.shop__empty-description {
  color: var(--muted);
  margin-bottom: 22px;
}

/* --------------------------------------------------------------------------
   Product detail
   -------------------------------------------------------------------------- */

.product-detail {
  padding: 56px 0 72px;
}

.product-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.product-detail__main-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--green-100);
}

.product-detail__main-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail__thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.product-detail__thumbnail {
  width: 76px;
  height: 76px;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
  background: var(--white);
  opacity: 0.7;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.product-detail__thumbnail:hover {
  opacity: 1;
}

.product-detail__thumbnail.active {
  border-color: var(--green-700);
  opacity: 1;
}

.product-detail__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__category {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 8px;
}

.product-detail__title {
  font-size: 34px;
  margin-bottom: 10px;
}

.product-detail__price {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 28px;
}

.product-detail__description,
.product-detail__specs,
.product-detail__care {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.product-detail__description h3,
.product-detail__specs h3,
.product-detail__care h3,
.product-detail__meta strong {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--green-800);
  margin-bottom: 10px;
}

.product-detail__description p,
.product-detail__care p {
  color: var(--ink-soft);
}

.specs-list {
  margin: 0;
}

.specs-list__item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}

.specs-list__item:last-child {
  border-bottom: none;
}

.specs-list__item dt {
  color: var(--muted);
}

.specs-list__item dd {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.product-detail__actions {
  margin-bottom: 20px;
}

.product-detail__note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

.product-detail__meta {
  background: var(--green-50);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.product-detail__meta p {
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--ink-soft);
}

.related-products {
  padding: 56px 0 80px;
  background: var(--green-50);
}

/* --------------------------------------------------------------------------
   Care page
   -------------------------------------------------------------------------- */

.care {
  padding: 56px 0 80px;
}

.care__intro {
  max-width: 760px;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 44px;
}

.care__block {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green-500);
  border-radius: var(--radius);
  padding: 30px 36px;
  margin-bottom: 24px;
}

.care__title {
  font-size: 26px;
  margin-bottom: 10px;
}

.care__text {
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.care__list {
  margin: 0;
  padding-left: 1.4em;
}

.care__list li {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.care__list strong {
  color: var(--green-800);
}

.care__tip {
  text-align: center;
  background: var(--green-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
}

.care__tip-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.care__tip-text {
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 22px;
}

.care__tip-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Legal / terms page
   -------------------------------------------------------------------------- */

.legal {
  padding: 56px 0 80px;
}

.legal__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  align-items: start;
}

.legal__nav {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.legal__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal__nav-link {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink-soft);
}

.legal__nav-link:hover {
  background: var(--green-50);
  color: var(--green-800);
}

.legal__block {
  scroll-margin-top: calc(var(--header-h) + 24px);
  margin-bottom: 36px;
}

.legal__heading {
  font-size: 28px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-200);
  margin-bottom: 16px;
}

.legal__block p {
  color: var(--ink-soft);
}

.legal__list {
  color: var(--ink-soft);
}

.legal__list li {
  margin-bottom: 8px;
}

.legal__list--plain {
  list-style: none;
  padding-left: 0;
}

.legal__copyright {
  font-size: 14px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact {
  padding: 56px 0 80px;
}

.contact__layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: start;
}

.contact__heading {
  font-size: 30px;
  margin-bottom: 10px;
}

.contact__description {
  color: var(--ink-soft);
  margin-bottom: 30px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 34px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.contact__detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__detail-icon svg {
  width: 22px;
  height: 22px;
}

.contact__detail-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.contact__detail-content p {
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.contact__detail-link {
  font-weight: 600;
  font-size: 17px;
}

.contact__detail-hours {
  font-size: 14px;
  color: var(--muted);
}

.contact__detail-phone {
  margin-bottom: 10px !important;
}

.contact__services {
  background: var(--green-50);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.contact__services h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.contact__services-list {
  margin: 0;
  color: var(--ink-soft);
}

.contact__services-list li {
  margin-bottom: 8px;
}

.contact__form-container {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}

.contact__success {
  text-align: center;
  padding: 40px 10px;
}

.contact__success-icon {
  width: 56px;
  height: 56px;
  color: var(--green-600);
  margin: 0 auto 18px;
}

.contact__success h3 {
  font-size: 26px;
}

.contact__success p {
  color: var(--ink-soft);
}

.contact__success-note a {
  font-weight: 600;
}

.contact__success .btn {
  margin-top: 10px;
}

.contact__error {
  background: #fef2f2;
  border: 1px solid #f5c2c7;
  color: #9f1239;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  margin-bottom: 18px;
}

.contact__error[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.required {
  color: var(--accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(76, 122, 94, 0.18);
}

.form-textarea {
  resize: vertical;
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */

.about {
  padding: 56px 0 80px;
}

.about__content {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}

.about__heading {
  font-size: 30px;
  margin-bottom: 16px;
}

.about__heading--centered {
  text-align: center;
  margin-bottom: 36px;
}

.about__text p {
  color: var(--ink-soft);
  font-size: 17px;
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about__image img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}

.about__values {
  margin-bottom: 64px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value__icon svg {
  width: 26px;
  height: 26px;
}

.value__title {
  font-size: 19px;
  margin-bottom: 8px;
}

.value__description {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

.about__story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about__story-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about__story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about__story-content p {
  color: var(--ink-soft);
  font-size: 17px;
}

.about__story-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 19px;
  color: var(--green-700);
  border-left: 4px solid var(--green-500);
  padding-left: 20px;
}

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

/* --------------------------------------------------------------------------
   Error pages
   -------------------------------------------------------------------------- */

.error-page {
  padding: 100px 0;
  text-align: center;
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 1;
  color: var(--green-200);
  margin-bottom: 10px;
}

.error-page__title {
  font-size: 36px;
}

.error-page__description {
  max-width: 480px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.error-page__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.error-page__illustration {
  width: 72px;
  height: 72px;
  margin: 40px auto 0;
  color: var(--green-500);
}

.error-page__illustration svg {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer__logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
}

.footer__tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
}

.footer__local strong {
  color: var(--green-300);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-link,
.footer__phone a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer__nav-link:hover,
.footer__phone a:hover {
  color: var(--white);
}

.footer__contact p {
  font-size: 15px;
  margin-bottom: 8px;
}

.footer__phone {
  font-family: var(--font-heading);
  font-size: 18px;
}

.footer__hours {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 26px;
  text-align: center;
}

.footer__copyright,
.footer__credit {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

/* --------------------------------------------------------------------------
   Cart & Checkout
   -------------------------------------------------------------------------- */

.header__cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-800);
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}

.header__cart-btn:hover {
  background: var(--green-100);
  color: var(--green-900);
}

.header__cart-icon {
  width: 22px;
  height: 22px;
}

.header__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.product-detail__add-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 14px;
}

.product-detail__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--green-200);
  border-radius: 999px;
  background: var(--white);
  padding: 0 14px;
}

.product-detail__qty-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.product-detail__qty-input {
  width: 56px;
  border: none;
  padding: 0;
  text-align: center;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.product-detail__qty-input:focus {
  outline: none;
  box-shadow: none;
}

/* Cart page */

.cart__empty {
  text-align: center;
  padding: 60px 20px;
}

.cart__empty-message {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.cart__wrap {
  max-width: 860px;
}

.cart__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cart__table th,
.cart__table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.cart__table th {
  background: var(--green-100);
  color: var(--green-800);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cart__table tbody tr:last-child td {
  border-bottom: none;
}

.cart__product {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.cart__thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart__ref {
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
}

.cart__qty {
  white-space: nowrap;
}

.cart__qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--green-200);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-700);
  font-size: 16px;
  cursor: pointer;
}

.cart__qty-btn:hover {
  background: var(--green-100);
}

.cart__qty-value {
  display: inline-block;
  min-width: 36px;
  text-align: center;
  font-weight: 600;
}

.cart__subtotal {
  color: var(--ink);
}

.cart__remove {
  border: none;
  background: none;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

.cart__remove:hover {
  color: var(--green-800);
}

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

.cart__total {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-800);
}

.cart__note {
  width: 100%;
  font-size: 14px;
  color: var(--muted);
  margin: 6px 0 0;
}

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

/* Checkout */

.checkout__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.checkout__details {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.checkout__summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.checkout__heading {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--green-800);
  margin: 0 0 16px;
}

.checkout__heading + .checkout__heading {
  margin-top: 28px;
}

.checkout__radios {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.checkout__radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--green-200);
  border-radius: var(--radius-sm);
  background: var(--cream);
  cursor: pointer;
  font-size: 15px;
}

.checkout__radio input {
  margin-top: 4px;
}

.checkout__items {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}

.checkout__item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.checkout__item:last-child {
  border-bottom: none;
}

.checkout__item-name {
  font-weight: 600;
}

.checkout__item-line {
  color: var(--muted);
}

.checkout__item-subtotal {
  font-weight: 600;
  color: var(--ink);
}

.checkout__empty {
  color: var(--muted);
  padding: 12px 0;
}

.checkout__total {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-800);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-bottom: 24px;
}

.checkout__paynote,
.checkout__note {
  font-size: 14px;
  color: var(--muted);
  margin: 10px 0;
}

.checkout__error {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #fbe9e7;
  color: #8d2f1c;
  font-size: 14px;
}

.checkout__error:not([hidden]) {
  display: block;
}

/* Order confirmation */

.order__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.order__block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.order__block--bank {
  border: 1px solid var(--green-300);
  background: var(--cream);
}

.order__heading {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--green-800);
  margin: 0 0 14px;
}

.bank-details {
  margin: 16px 0;
}

.bank-details__item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.bank-details__item dt {
  color: var(--muted);
  font-weight: 600;
}

.bank-details__item dd {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.order__hint {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
}

.order__items {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}

.order__item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.order__item-name {
  font-weight: 600;
}

.order__item--subtotal {
  border-top: 1px solid var(--green-200);
  margin-top: 4px;
}

.order__item-ref {
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
}

.order__item-line {
  color: var(--muted);
}

.order__item-subtotal {
  font-weight: 600;
}

.order__total {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-800);
}

.order__details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.order__details li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.order__details li:last-child {
  border-bottom: none;
}

.order__aside {
  background: var(--cream);
  border: 1px solid var(--green-200);
  border-radius: var(--radius);
  padding: 22px;
  font-size: 15px;
}

.order__aside .btn {
  margin-top: 14px;
}

/* Admin */

.admin__table-wrap {
  overflow-x: auto;
}

.admin__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.admin__table th,
.admin__table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 14px;
}

.admin__table th {
  background: var(--green-100);
  color: var(--green-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}

.admin__table a {
  color: var(--green-700);
  font-weight: 600;
}

.admin__muted {
  color: var(--muted);
  font-size: 13px;
}

.admin__extra-row td {
  background: var(--cream);
}

.admin__status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin__status--pending {
  background: var(--accent-soft);
  color: var(--accent);
}

.admin__status--paid {
  background: var(--green-100);
  color: var(--green-700);
}

.admin__status--anonymized {
  background: #eef0f2;
  color: var(--muted);
}

/* Admin console chrome */

.admin-topbar {
  background: var(--green-900);
  color: var(--white);
}

.admin-topbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 60px;
}

.admin-topbar__brand {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.admin-topbar__brand span {
  color: var(--green-300);
  font-size: 14px;
}

.admin-topbar__nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.admin-topbar__link {
  color: var(--green-200);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
}

.admin-topbar__link:hover {
  color: var(--white);
  border-bottom-color: var(--green-300);
}

.admin-topbar__logout {
  margin-left: 8px;
}

.admin-main {
  padding: 32px 0 64px;
}

.admin-page {
  padding: 8px 0;
}

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

.admin-page__title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--green-900);
  margin: 0;
}

.admin__actions {
  white-space: nowrap;
}

.admin__inline-form {
  display: inline-block;
}

.admin__thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

.admin__flash {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
}

.admin__flash--ok {
  background: var(--green-100);
  color: var(--green-800);
}

.admin__flash--error {
  background: #fbe9e7;
  color: #8d2f1c;
}

.admin-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.admin-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.admin-form__col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.admin-form__actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}

.admin-form__inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-form__checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.admin-form__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.admin-form__checkbox input {
  accent-color: var(--green-600);
}

.admin-form__preview {
  margin-top: 10px;
}

.admin-form__preview-img {
  max-width: 160px;
  max-height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  margin-bottom: 6px;
}

.form-input--slim {
  width: 80px;
}

.form-hint {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 0;
}

.btn--danger {
  background: #b0291e;
  color: var(--white);
}

.btn--danger:hover {
  background: #8f2118;
  color: var(--white);
}

/* Admin login */

.auth-page {
  display: flex;
  justify-content: center;
  padding: 64px 0;
}

.auth-box {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

.auth-box__heading {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--green-900);
  margin: 0 0 8px;
}

.auth-box__sub {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 20px;
}

.auth-box__error {
  background: #fbe9e7;
  color: #8d2f1c;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin: 0 0 16px;
}

.auth-box__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about__content,
  .about__story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__image,
  .about__story-media {
    order: -1;
  }

  .local-banner {
    grid-template-columns: 1fr 1fr;
    padding: 36px;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal__layout {
    grid-template-columns: 1fr;
  }

  .legal__nav {
    position: static;
  }

  .legal__nav-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .header__nav,
  .header__contact-btn {
    display: none;
  }

  .header__mobile-menu-btn {
    display: flex;
  }

  .header.is-open .header__mobile-nav {
    display: block;
  }

  .header.is-open .header__menu-icon {
    display: none;
  }

  .header.is-open .header__close-icon {
    display: block;
  }

  .header__mobile-nav {
    border-top: 1px solid var(--line);
    padding: 12px 0 20px;
    background: var(--white);
  }

  .header__mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__mobile-nav-link {
    display: block;
    padding: 13px 24px;
    font-size: 17px;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: var(--radius-sm);
  }

  .header__mobile-nav-link:hover {
    background: var(--green-50);
    color: var(--green-800);
  }

  .header__mobile-nav-row {
    display: flex;
    gap: 12px;
    padding: 16px 24px 4px;
  }

  .header__mobile-nav-row .btn {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .admin-form__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .admin-topbar__inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0;
  }

  .admin-topbar__nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    padding: 12px 0;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero-image img {
    max-height: 420px;
  }

  .section-header__title,
  .cta__title,
  .page-header__title {
    font-size: 32px;
  }

  .split,
  .terrarium-type {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .terrarium-type--reverse .terrarium-type__media {
    order: 0;
  }

  .card-grid--3,
  .product-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .local-banner {
    grid-template-columns: 1fr;
  }

  .shop__layout {
    grid-template-columns: 1fr;
  }

  .shop__sidebar {
    position: static;
  }

  .product-detail__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .checkout__grid,
  .order__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .checkout__summary {
    position: static;
  }

  .cart__wrap {
    max-width: none;
  }

  .cart__table th:nth-child(2),
  .cart__table td:nth-child(2) {
    display: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .product-card__name {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .header__logo {
    padding: 0 16px;
  }

  .header__logo-img {
    width: 170px;
    height: auto;
  }

  .hero__title {
    font-size: 32px;
  }

  .terrarium-type__media img {
    aspect-ratio: 4 / 4.2;
  }

  .contact__form-container {
    padding: 26px 20px;
  }

  .shop__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-detail__add-row {
    flex-wrap: wrap;
  }

  .cart__footer,
  .cart__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cart__table th:nth-child(4),
  .cart__table td:nth-child(4) {
    display: none;
  }
}