.farmtab-profile-header {
  position: relative;
  background: #f6f7f5;
  padding: 0px;
}

.farmtab-featured-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.farmtab-profile-inner {
  display: flex;
  align-items: flex-end;
  max-width: 1200px;
  margin: -80px auto 0;
  padding: 0 1.5rem;
}

.farmtab-profile-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: 0px 0px 2px rgba(0,0,0,.1);
}

.farmtab-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.farmtab-profile-meta {
  margin-left: 1.5rem;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0px 0px 2px rgba(0,0,0,.1);
}

.farmtab-farm-name {
  margin: 0;
  font-size: 2rem;
}

.farmtab-location {
  color: #555;
}

.farmtab-day {
  display: none;
}

.farmtab-more-info-btn {
  margin-top: 1rem;
  background: #2f6f3e;
  color: #fff;
  border: none;
  padding: .6rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

#farmtab-profile-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.5);
}

#farmtab-profile-modal.active {
  display: flex;
}

.farmtab-modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
}

.farmtab-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  font-size: 1.2rem;
}

.farmtab-modal-overlay {
  position: absolute;
  inset: 0;
}


#farmtab-profile-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.5);
}

#farmtab-profile-modal.active {
  display: flex;
}

.farmtab-modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  position: relative;
}

.farmtab-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  font-size: 1.2rem;
}

.farmtab-modal-overlay {
  position: absolute;
  inset: 0;
}

/* ===============================
   PROFILE HEADER – MOBILE STACK
================================ */

@media (max-width: 640px) {
  .farmtab-profile-inner {
    flex-direction: column;
    align-items: center;
    margin-top: -60px; /* slightly less overlap on mobile */
    text-align: center;
  }

  .farmtab-featured-image img {
    height: 180px;
  }

  .farmtab-profile-image {
    margin-bottom: 0.75rem;
  }

.farmtab-modal-content {
  width:90%;
  height: 90%;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: .85rem;
}

  .farmtab-profile-meta {
    margin-left: 0;      /* remove desktop spacing */
    width: 100%;
    max-width: 420px;    /* keeps it readable */
  }
}


