body {
  font-family: "Cormorant Garamond", serif;
}

:root {
  --theme-color: #71795b;
  --light-color: #f5f5f5;
  --card-bg: rgba(255, 255, 255, 0.94);
  --ink: #2c2c27;
  --muted: #777568;
  --line: rgba(76, 81, 59, 0.12);
}

.bg-theme {
  min-height: 100vh;
  width: 100%;
  background-color: var(--theme-color);
}

.bg-light {
  min-height: 100vh;
  background-color: var(--light-color);
}

.card.enquirycard {
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  border: 0;
  background: url("/assets/img/cardtheme.png");
  background-size: cover;
  background-position: center;
}

.logoharmony {
  height: 80px;
  width: 80px;
}

.mainheading {
  color: var(--theme-color);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 600;
}

.para {
  color: #383838;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}

.flowericon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.message-box {
  margin-top: 12px;
  color: #9a4d33;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.message-box:empty {
  display: none;
}

.enquiry-list {
  display: grid;
  gap: 10px;
}

.enquiry-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr 32px;
  align-items: center;
  min-height: 82px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(38, 43, 29, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.enquiry-card:hover {
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(38, 43, 29, 0.12);
}

.thumb {
  position: relative;
  display: block;
  width: 76px;
  height: 52px;
  margin-left: 8px;
  overflow: hidden;
  border-radius: 6px;
  background: #edece5;
}

.thumb img,
.thumb-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.thumb img {
  object-fit: contain;
}

.thumb-placeholder {
  background: linear-gradient(135deg, #ebe8dd, #f8f7f2);
}

.card-tag {
  position: absolute;
  left: 4px;
  bottom: 4px;
  z-index: 2;
  border-radius: 2px;
  background: rgba(72, 99, 58, 0.92);
  padding: 3px 6px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.card-content {
  min-width: 0;
  margin-left: 12px;
  padding: 10px 6px 6px 0;
}

.card-content h4 {
  display: block;
  color: #2c2c27;
 font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
}

.card-content small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #858375;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 500;
}

.card-meta svg {
  width: 12px;
  height: 12px;
  color: #8a8c7d;
}

.card-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-right: 8px;
}

.menu-dots {
  display: grid;
  gap: 3px;
}

.menu-dots i {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #20201d;
}

.arrow-btn {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: #f1eee7;
  color: #5e604f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.loading,
.empty,
.error {
  margin: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.error {
  color: #9a4d33;
}

@media (max-width: 480px) {
  .card.enquirycard {
    min-height: 620px;
  }

  .enquiry-card {
    grid-template-columns: 82px 1fr 28px;
  }

  .thumb {
    width: 72px;
    height: 56px;
  }

  .card-content h4 {
    font-size: 14px;
  }
}
