/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 01 2026 | 08:45:14 */
/* Sushi Yaki Checkout Input Yellow Background Fix - Safe Final */
body.woocommerce-checkout {
  --input-bg: #102b2a !important;
  --input-bg-hover: #102b2a !important;
  --input-border-color: rgba(230, 201, 162, 0.45) !important;
  --input-border-hover: #e6c9a2 !important;
}

/* Checkout fields */
body.woocommerce-checkout .woocommerce form .form-row input.input-text,
body.woocommerce-checkout .woocommerce form .form-row textarea,
body.woocommerce-checkout .woocommerce form .form-row select,
body.woocommerce-checkout .checkout_coupon input.input-text {
  background-color: #102b2a !important;
  color: #ffffff !important;
  border: 1px solid rgba(230, 201, 162, 0.45) !important;
  box-shadow: none !important;
}

/* Focus state */
body.woocommerce-checkout .woocommerce form .form-row input.input-text:focus,
body.woocommerce-checkout .woocommerce form .form-row textarea:focus,
body.woocommerce-checkout .woocommerce form .form-row select:focus,
body.woocommerce-checkout .checkout_coupon input.input-text:focus {
  background-color: #0e2524 !important;
  color: #ffffff !important;
  border-color: #e6c9a2 !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(230, 201, 162, 0.12) !important;
}

/* Placeholder color */
body.woocommerce-checkout .woocommerce form .form-row input.input-text::placeholder,
body.woocommerce-checkout .woocommerce form .form-row textarea::placeholder,
body.woocommerce-checkout .checkout_coupon input.input-text::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
  opacity: 1 !important;
}

/* Chrome autofill yellow fix */
body.woocommerce-checkout input:-webkit-autofill,
body.woocommerce-checkout input:-webkit-autofill:hover,
body.woocommerce-checkout input:-webkit-autofill:focus,
body.woocommerce-checkout textarea:-webkit-autofill,
body.woocommerce-checkout textarea:-webkit-autofill:hover,
body.woocommerce-checkout textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px #102b2a inset !important;
  box-shadow: 0 0 0 1000px #102b2a inset !important;
  caret-color: #ffffff !important;
  transition: background-color 9999s ease-in-out 0s !important;
}