/*!
 * Frontend stylesheet — WooCommerce Checkout Page Customize by RH99
 * Author: Md: Rubel Hossain
 * URL: https://www.facebook.com/rubelhossain999
 * Version: 0.1.0
 *
 * Keep styles minimal and theme-agnostic.
 * These classes are applied conditionally to protected fields.
 */

.wccrh99-readonly input,
.wccrh99-readonly textarea,
.wccrh99-locked input,
.wccrh99-locked textarea {
  background-color: #f7f7f7;
  color: #555;
}

.wccrh99-locked input,
.wccrh99-locked textarea {
  pointer-events: none;
}

.wccrh99-autofill input,
.wccrh99-autofill textarea {
  outline: 1px dashed #2c7be5;
  outline-offset: 1px;
}

/* Visually hide protected fields set to "hidden-visual" mode.
   The class is applied to the WooCommerce field wrapper, so this
   hides the entire row (label + input) without removing the field
   from the form structure. */
.wccrh99-hidden-visual {
  display: none !important;
}