/* Input text */
#coupon_code {
  color: #000 !important;   /* black text when typing */
}

/* Placeholder text */
#coupon_code::placeholder {
  color: #000 !important;   /* black placeholder */
  opacity: 1;               /* make sure it’s not faded */
}

/* On focus */
#coupon_code:focus {
  color: #000 !important;   /* black text when focused */
}

/* On hover */
#coupon_code:hover::placeholder {
  color: #000 !important;   /* black placeholder on hover */
}


/* Just the £100.00 number */
#valueneeded {
  color: #000 !important;   /* black */
}

/* If you also want ALL the "Spend £100.00 more for FREE delivery" text black */
.getfreedelivery {
  color: #000 !important;   /* black */
}


/* Shrink ALL titles in the left Search & Filter menu */
.shop-filters .filter-section h1,
.shop-filters .filter-section h2,
.shop-filters .filter-section h3,
.shop-filters .filter-section h4,
.shop-filters .filter-section h5,
.shop-filters .filter-section h6,
.shop-filters .filter-section .filter-static {
  font-size: 0.8rem !important;   /* change this value if you want smaller/bigger */
  line-height: 1.1 !important;
}