/* =========================================
   HACOCO — POR Popup (CF7) Styling
   Scoped to .hv-por-form only
   ========================================= */

.hv-por-form .wpcf7 form {
  display: grid;
  gap: 14px;
  font-size: 16px;
}

.hv-por-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.hv-por-form input[type="text"],
.hv-por-form input[type="tel"],
.hv-por-form select,
.hv-por-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d8d8e0;
  border-radius: 8px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.hv-por-form input:focus,
.hv-por-form select:focus,
.hv-por-form textarea:focus {
  border-color: #7b5cff;
  box-shadow: 0 0 0 3px rgba(123, 92, 255, .12);
  outline: none;
}

.hv-por-form textarea {
  width: 100%;
  height: 90px;      /* ~3 rows */
  resize: vertical;  /* allow expand */
}

.hv-por-form input[type="submit"] {
  background: #7b5cff;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
}

.hv-por-form input[type="submit"]:hover {
  filter: brightness(0.95);
}

/* CF7 response output: show errors, hide on success */
.hv-por-form .wpcf7-response-output {
  display: block;
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.hv-por-form .wpcf7 form.invalid .wpcf7-response-output,
.hv-por-form .wpcf7 form.failed .wpcf7-response-output {
  background: #fff3f3;
  border: 1px solid #ffd1d1;
  color: #a40000;
}

.hv-por-form .wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

/* Thank-you state styling */
.hv-por-thanks {
  text-align: center;
  padding: 24px 8px;
}

.hv-por-thanks h4 {
  margin: 0 0 6px;
  font-size: 20px;
}

.hv-por-thanks p {
  margin: 0;
  color: #4a4a4a;
}


/* =========================================
   HACOCO — WooCommerce Product Cleanup
   ========================================= */

/* Hide SKU / category / author / date meta blocks safely */
.single-product .product_meta,
.single-product .entry-meta,
.single-product .posted-on,
.single-product .byline,
.single-product .author {
  display: none !important;
}


/* =========================================
   HACOCO — Footer (RERA + Links)
   ========================================= */

.footer-rera {
  margin-top: 10px;
  padding-top: 8px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-rera strong {
  color: rgba(255, 255, 255, 0.95);
}

/* RERA link styling */
.footer-rera a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 600;
}

.footer-rera a:hover {
  text-decoration: underline;
}

/* Footer quick links — scoped to menus/widgets only */
footer .menu a,
.site-footer .menu a,
#site-footer .menu a,
footer .widget a,
.site-footer .widget a,
#site-footer .widget a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

footer .menu a:hover,
.site-footer .menu a:hover,
#site-footer .menu a:hover,
footer .widget a:hover,
.site-footer .widget a:hover,
#site-footer .widget a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer widget titles */
footer .widget-title,
.site-footer .widget-title {
  color: rgba(255, 255, 255, 0.95);
}

/* Footer credit link (Antialias) */
footer p a,
.site-footer p a,
#site-footer p a {
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  font-weight: 600;
}

footer p a:hover,
.site-footer p a:hover,
#site-footer p a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-rera { margin-top: 8px; padding-top: 8px; }
footer p { margin-top: 6px; margin-bottom: 0; }

