

/* BASE */
:root {
  --hern-primary: #005f5b;
  --hern-primary-dark: #004c49;
  --hern-text: #102331;
  --hern-muted: #6b7280;
  --hern-bg: #f6f7f5;
  --hern-white: #ffffff;
}

body {
  font-family: "Work Sans", sans-serif;
}

/* NAVBAR */
.hern-simple-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 40px);
  max-width: 1500px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 85, 85, 0.94);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.hern-logo {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 850;
  text-decoration: none;
}

.hern-menu {
  display: flex;
  gap: 28px;
}

.hern-menu a {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.2rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.hern-menu a:hover {
  color: #fff;
}

/* HERO */
.hern-hero {
  min-height: 100vh;
}

.hern-hero .container,
.hern-hero .row {
  min-height: 100vh;
}

.hern-hero .overlay::before {
  background: linear-gradient(
    180deg,
    rgba(0, 35, 60, 0.25) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 22px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hern-hero .heading {
  max-width: 950px;
  margin: 0 auto 28px;
  color: #fff;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.hern-hero .hero-text {
  max-width: 760px;
  margin: 0 auto 50px;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(1.20rem, 1.8vw, 1.4rem);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}

/* BOTONES HERO */
.hern-hero .hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hern-hero .hero-actions a.btn {
  min-width: auto;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: none;
}

.hern-hero .hero-actions a.btn-primary {
  background: var(--hern-primary);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #eef3e8;
  backdrop-filter: blur(8px);
}

/* Hover */
.hern-hero .hero-actions a.btn-primary:hover {
  background: #c9a66b;
  border-color: #c9a66b;
  color: #ffffff;
}

/* Click */
.hern-hero .hero-actions a.btn-primary:active {
  background: #a9854f;
  border-color: #a9854f;
  color: #ffffff;
}
.hern-hero .hero-actions a.btn-outline-light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hern-hero .hero-actions a.btn-outline-light:hover {
  background: #ffffff;
  color: var(--hern-primary);
}

/* TARJETAS DE BENEFICIOS */
.features-1 .row {
  align-items: stretch;
}

.features-1 .box-feature {
  height: 100%;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.features-1 .box-feature span {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-1 .box-feature h3 {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-1 .box-feature p {
  margin-bottom: 0;
}

/* PROPIEDADES INDEX */
.property-item {
  border-radius: 16px;
  overflow: hidden;
}

.property-item .img {
  display: block;
  height: 260px;
  overflow: hidden;
}

.property-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DETALLE PROPIEDAD */
.property-detail-page {
  background: var(--hern-bg);
  min-height: 100vh;
  padding-top: 130px;
}

.property-detail-hero {
  padding: 40px 0 70px;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--hern-primary);
  font-weight: 850;
  text-decoration: none;
  font-size: 1.2rem;
}

.property-detail-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 52px;
  align-items: start;
}

.property-gallery {
  position: relative;
}

.property-main-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.property-gallery-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.gallery-btn {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--hern-primary);
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.property-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.property-thumbs img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  opacity: 0.78;
  transition: 0.2s ease;
}

.property-thumbs img:hover,
.property-thumbs img.active {
  opacity: 1;
  outline: 4px solid var(--hern-primary);
}

.property-summary-card {
  background: #fff;
  padding: 38px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 120px;
}

.property-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(0, 85, 85, 0.1);
  color: var(--hern-primary);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1;
}

.property-summary-card h1 {
  color: var(--hern-text);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.property-price {
  color: var(--hern-primary);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.property-location {
  color: var(--hern-muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.property-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.property-specs div {
  padding: 18px;
  border-radius: 18px;
  background: #f3f6f4;
}

.property-specs strong {
  display: block;
  color: var(--hern-text);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.property-specs span {
  color: var(--hern-muted);
  font-size: 0.92rem;
}

.property-contact-btn {
  width: 100%;
  padding: 18px 22px;
  border-radius: 999px;
  font-weight: 900;
  background: var(--hern-primary);
  border-color: var(--hern-primary);
}

.contact-note {
  margin-top: 18px;
  color: #777;
  font-size: 0.95rem;
  text-align: center;
}

.property-description-section {
  padding-bottom: 80px;
}

.property-description-card {
  background: #fff;
  padding: 42px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.property-description-card h2 {
  color: var(--hern-text);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.property-description-card p {
  color: #4b5563;
  font-size: 1.12rem;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .property-detail-grid {
    grid-template-columns: 1fr;
  }

  .property-summary-card {
    position: static;
  }

  .property-main-image {
    height: 430px;
  }

  .property-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}


@media (max-width: 576px) {
  .property-detail-page {
    padding-top: 100px;
  }

  .property-main-image {
    height: 320px;
    border-radius: 20px;
  }

  .property-summary-card,
  .property-description-card {
    padding: 26px;
    border-radius: 22px;
  }

  .property-specs {
    grid-template-columns: 1fr;
  }
}
body .hern-hero .hero-actions > a.btn {
  padding: 10px 22px !important;
  border-radius: 10px !important;
  min-width: auto !important;
  font-size: 1.1rem !important;
  box-shadow: none !important;
}
.property-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.property-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f3f6f4;
}

.property-feature-item span {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #005f5b;
  color: white;
  font-weight: 900;
}

.property-feature-item p {
  margin: 0;
  color: #102331;
  font-weight: 600;
}

@media (max-width: 768px) {
  .property-features-list {
    grid-template-columns: 1fr;
  }
}
.contact-page {
  background: var(--hern-bg);
  min-height: 100vh;
  padding-top: 130px;
}

.contact-section {
  padding: 40px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: #fff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.contact-info-card h1 {
  color: var(--hern-text);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.contact-info-card > p {
  color: #4b5563;
  font-size: 1.15rem;
  line-height: 1.7;
}

.contact-property-box {
  margin-top: 34px;
  padding: 24px;
  border-radius: 22px;
  background: #f3f6f4;
}

.contact-property-box strong {
  display: block;
  margin-bottom: 12px;
  color: var(--hern-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.contact-property-box h3 {
  color: var(--hern-text);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.contact-property-box p {
  margin-bottom: 8px;
  color: var(--hern-muted);
}

.contact-property-box span {
  color: var(--hern-primary);
  font-size: 1.3rem;
  font-weight: 900;
}

.form-group-custom {
  margin-bottom: 22px;
}

.form-group-custom label {
  display: block;
  margin-bottom: 8px;
  color: var(--hern-text);
  font-weight: 850;
  font-size: 1.05rem;
}

.form-group-custom input,
.form-group-custom textarea {
  width: 100%;
  border: 1px solid #d8dfdc;
  border-radius: 16px;
  padding: 15px 18px;
  font-size: 1rem;
  color: var(--hern-text);
  background: #fbfcfb;
  outline: none;
}

.form-group-custom input:focus,
.form-group-custom textarea:focus {
  border-color: var(--hern-primary);
  box-shadow: 0 0 0 4px rgba(0, 95, 91, 0.12);
}

.contact-submit-btn {
  width: 100%;
  padding: 17px 24px !important;
  border-radius: 999px !important;
  background: var(--hern-primary) !important;
  border-color: var(--hern-primary) !important;
  color: #fff !important;
  font-weight: 900 !important;
}

.contact-small-text {
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--hern-muted);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .contact-page {
    padding-top: 100px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px;
    border-radius: 22px;
  }
}
.admin-page {
  background: var(--hern-bg);
  min-height: 100vh;
  padding: 140px 0 80px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.admin-header h1 {
  color: var(--hern-text);
  font-size: clamp(2.0rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.admin-header p {
  color: var(--hern-muted);
  font-size: 1.1rem;
  margin: 0;
}

.admin-btn {
  border-radius: 999px !important;
  padding: 14px 24px !important;
  background: var(--hern-primary) !important;
  border-color: var(--hern-primary) !important;
  font-weight: 900 !important;
}

.admin-contact-list {
  display: grid;
  gap: 24px;
  max-width: 1050px;
}

.admin-contact-card,
.admin-empty {
  background: #fff;
  padding: 30px;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.admin-contact-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.admin-contact-top h2 {
  color: var(--hern-text);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.admin-contact-top p {
  color: var(--hern-muted);
  margin-bottom: 4px;
}
.admin-contact-card {
  position: relative;
  border-left: 8px solid #c9a66b;
}
.admin-property-box.general-query {
  background: #fff7e6;
  border: 1px solid #f1d28a;
}
.admin-contact-card.contactado {
  border-left-color: #198754;
}
.admin-status {
  height: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 95, 91, 0.1);
  color: var(--hern-primary);
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.admin-property-box,
.admin-message {
  padding: 22px;
  border-radius: 20px;
  background: #f3f6f4;
  margin-bottom: 18px;
}

.admin-property-box strong,
.admin-message strong {
  display: block;
  color: var(--hern-primary);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.admin-property-box h3 {
  color: var(--hern-text);
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.admin-property-box p,
.admin-message p {
  color: #4b5563;
  margin-bottom: 6px;
}

.admin-property-box span {
  color: var(--hern-primary);
  font-weight: 900;
  font-size: 1.1rem;
}

.admin-date {
  color: var(--hern-muted);
  font-size: 0.9rem;
  text-align: right;
}

.admin-empty h2 {
  color: var(--hern-text);
  font-weight: 900;
}

.admin-empty p {
  color: var(--hern-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-contact-top {
    flex-direction: column;
  }

  .admin-date {
    text-align: left;
  }
}
.admin-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
  margin-bottom: 18px;
}

.admin-actions form {
  margin: 0;
}

.admin-whatsapp-btn,
.admin-secondary-btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.admin-whatsapp-btn {
  background: #005f5b;
  color: #fff;
}

.admin-whatsapp-btn:hover {
  background: #004c49;
  color: #fff;
}

.admin-secondary-btn {
  background: #eef3f1;
  color: #005f5b;
}

.admin-status.contactado {
  background: rgba(25, 135, 84, 0.14);
  color: #198754;
}

.catalog-page {
  background: var(--hern-bg);
  min-height: 100vh;
  padding-top: 130px;
}

.catalog-section {
  padding: 45px 0 90px;
}

.catalog-header {
  max-width: 100%;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.catalog-header h1 {
  max-width: 100%;
  font-size: clamp(2.6rem, 3.2vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -1.8px;
  margin: 14px 0 16px;
  font-weight: 900;
  color: var(--hern-text);
}

.catalog-header p {
  max-width: 920px;
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--hern-muted);
  margin-bottom: 30px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.catalog-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.catalog-img {
  display: block;
  height: 260px;
  overflow: hidden;
}

.catalog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-content {
  padding: 26px;
}

.catalog-type {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(0, 95, 91, 0.1);
  color: var(--hern-primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-content h2 {
  color: var(--hern-text);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 10px;
}

.catalog-location {
  color: var(--hern-muted);
  margin-bottom: 12px;
}

.catalog-price {
  color: var(--hern-primary);
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.catalog-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.catalog-specs span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #f3f6f4;
  color: var(--hern-text);
  font-size: 0.86rem;
  font-weight: 700;
}

.catalog-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--hern-primary);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.catalog-btn:hover {
  background: var(--hern-primary-dark);
  color: #fff;
}

@media (max-width: 992px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .catalog-page {
    padding-top: 105px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.property-main-image {
  cursor: zoom-in;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.image-modal.active {
  display: flex;
}

.image-modal img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
}

.image-modal-close {
  position: absolute;
  top: 22px;
  right: 34px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
}
.how-section {
  padding: 100px 0;
  background: #f6f7f5;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 95, 91, 0.1);
  color: var(--hern-primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.how-header {
  max-width: 760px;
  margin: 0 auto 48px;
}

.how-header h2 {
  color: var(--hern-text);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.how-header p {
  color: var(--hern-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.how-card {
  background: #fff;
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.07);
}

.how-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--hern-primary);
  color: #fff;
  font-weight: 900;
}

.how-card h3 {
  color: var(--hern-text);
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.how-card p {
  color: var(--hern-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 992px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}
.admin-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group-custom select {
  width: 100%;
  border: 1px solid #d8dfdc;
  border-radius: 16px;
  padding: 15px 18px;
  font-size: 1rem;
  color: var(--hern-text);
  background: #fbfcfb;
  outline: none;
}

@media (max-width: 576px) {
  .admin-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.admin-images-list {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.admin-image-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #f3f6f4;
}

.admin-image-item img {
  width: 120px;
  height: 85px;
  object-fit: cover;
  border-radius: 14px;
}

.admin-image-item strong {
  color: var(--hern-text);
  font-weight: 900;
}

.admin-image-item p {
  margin: 4px 0 0;
  color: var(--hern-muted);
  font-size: 0.9rem;
  word-break: break-all;
}
.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
  font-size: 1.05rem;
  padding: 16px 18px;
}
.catalog-filter {
  margin: 32px 0 36px;
  padding: 24px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.catalog-filter label {
  display: block;
  margin-bottom: 8px;
  color: var(--hern-text);
  font-weight: 800;
  font-size: 0.95rem;
}

.catalog-filter input,
.catalog-filter select {
  width: 100%;
  height: 52px;
  border: 1px solid #d8dfdc;
  border-radius: 14px;
  padding: 0 14px;
  color: var(--hern-text);
  background: #fbfcfb;
  font-size: 0.98rem;
  outline: none;
}

.catalog-filter input:focus,
.catalog-filter select:focus {
  border-color: var(--hern-primary);
  box-shadow: 0 0 0 4px rgba(0, 95, 91, 0.12);
}

.catalog-filter-actions {
  display: flex;
  gap: 10px;
}

.catalog-filter-actions button,
.catalog-filter-actions a {
  height: 52px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.catalog-filter-actions button {
  border: none;
  background: var(--hern-primary);
  color: #fff;
}

.catalog-filter-actions a {
  background: #eef3f1;
  color: var(--hern-primary);
}

@media (max-width: 992px) {
  .catalog-filter {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-filter-actions {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .catalog-filter {
    grid-template-columns: 1fr;
  }

  .catalog-filter-actions {
    grid-column: span 1;
    flex-direction: column;
  }
}

.catalog-container {
  max-width: 1600px;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .catalog-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.hern-menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hern-simple-nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hern-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hern-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
  }

  .hern-menu.active {
    display: flex;
  }

  .hern-menu a {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
  }
}
.phone-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #d8dfdc;
  border-radius: 16px;
  background: #fbfcfb;
  overflow: hidden;
}

.phone-input-group span {
  padding: 0 18px;
  height: 56px;
  display: flex;
  align-items: center;
  background: #eef3f1;
  color: var(--hern-primary);
  font-weight: 900;
  border-right: 1px solid #d8dfdc;
}

.phone-input-group input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  flex: 1;
}
.contact-success-box {
  margin-bottom: 28px;
}