/* ===========================
   HOME CONTACT (mobile + colors)
   =========================== */
.home-contact{
  background:#050814;
  color:#fff;
  padding:72px 16px;
}
.home-contact__inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
.home-contact__header{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin:0 0 18px;
}
.home-contact__title{
  color:#fff !important; /* перебивает глобальное h2 { color: var(--text) !important } */
  margin:0;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size: clamp(20px, 3vw, 30px);
}
.home-contact__note{
  margin:0;
  font-size:12px;
  opacity:.75;
}
.home-contact__row{
  gap:14px;
}
.home-contact__field label{
  display:block;
  margin:0 0 8px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color: rgba(255,255,255,.85);
}
.home-contact__field input,
.home-contact__field select,
.home-contact__field textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: #0b1224;
  color:#fff;
  padding: 12px 14px;
  outline: none;
}
.home-contact__field input,
.home-contact__field select{
  height: 46px;
}
.home-contact__field textarea{
  min-height: 130px;
  resize: vertical;
}
.home-contact__field input::placeholder{
  color: rgba(255,255,255,.55);
}
.home-contact__field input:focus,
.home-contact__field select:focus,
.home-contact__field textarea:focus{
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px var(--ring) !important;
}
.home-contact__checkbox{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  opacity:.85;
}
.home-contact__checkbox input{
  width:18px;
  height:18px;
  accent-color: var(--primary);
}
.home-contact__actions{
  margin-top: 10px;
}
.home-contact__submit{
  min-width: 220px;
}
/* HOME: NEWS block — fix title color + mobile spacing */
.home-news {
  position: relative;
}
.home-news__overlay {
  position: absolute;
  inset: 0;
}
.home-news__inner{
  position: relative;
  z-index: 2;            /* текст поверх overlay */
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;             /* чтобы "GET OUR" и "NEWS" не слипались */
}
.home-news__eyebrow{
  margin: 0;
  line-height: 1.2;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}
.home-news__title{
  margin: 0;
  line-height: 1.05;
  color: #fff !important;          /* фикс цвета NEWS */
  letter-spacing: .04em;
  text-shadow: 0 10px 28px rgba(0,0,0,.35); /* читабельность на фото */
}
/* Home contact: only form controls (not labels) */
.home-contact__field
  input:not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.home-contact__field select,
.home-contact__field textarea {
  color: #111 !important;
  background: #fff !important;
  -webkit-text-fill-color: #111; /* Safari/Chrome */
}
/* Placeholder */
.home-contact__field input::placeholder,
.home-contact__field textarea::placeholder {
  color: #6b7280 !important;
  opacity: 1;
}
/* If you see cursor: not-allowed on inputs */
.home-contact__field
  input:not([type="checkbox"]):not([type="radio"]),
.home-contact__field textarea {
  cursor: text !important;
}
.home-contact__field select {
  cursor: pointer !important;
}
/* Autofill keeps text readable */
.home-contact__field input:-webkit-autofill,
.home-contact__field textarea:-webkit-autofill,
.home-contact__field select:-webkit-autofill {
  -webkit-text-fill-color: #111 !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
}
/* moved [S3.4b1]: .shipping-icon--carrier,
.shipping-icon--individua */


/* moved [S3.5]: cyp-* pagi */

/* moved [S3.5]: cyp-* pagi hover */

.home-contact {
  background: var(--bg) !important;
  color: var(--text) !important;
}
.home-contact__inner {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow) !important;
}
.home-contact__title,
.home-contact__note,
.home-contact__field label {
  color: var(--text) !important;
}
.home-contact__field input:not([type="checkbox"]):not([type="radio"]),
.home-contact__field select,
.home-contact__field textarea {
  background: #ffffff !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
  -webkit-text-fill-color: var(--text) !important;
}
