/*
 * Women's 10K® Club • Global Styling
 * Initial Rebuild: 25 September 2026
 * stefanus@hosea.id
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  scroll-behavior: auto;
}
body {
  margin: 0;
  background: var(--w10k-bg);
  background-image: linear-gradient(transparent, rgba(255, 255, 255, 0.1));
  color: var(--w10k-text);
  font-family: var(--w10k-font);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: -0.1px;
  min-height: 100vh;
}
body {
  opacity: 0;
}
body.stefanushosea {
  opacity: 1;
}
body,
label,
summary,
details,
::-webkit-scrollbar {
  cursor: url("/repository/cursor.png"), auto !important;
}
a,
li,
button,
input,
[type="submit"],
input[type="button"],
input[type="reset"],
select,
[role="button"],
::-webkit-scrollbar-thumb {
  cursor: url("/repository/cursor-a.png"), pointer !important;
  outline: none !important;
}
::selection {
  color: var(--w10k-pink);
  background: transparent;
}
::placeholder {
  color: white;
  opacity: 0.5;
}
::-webkit-scrollbar {
  width: 5px;
  background: transparent;
}
::-webkit-scrollbar:horizontal {
  height: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  border-radius: var(--w10k-radius-pill);
  background: var(--w10k-pink);
  transition: background 0.25s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--w10k-orange);
}
option {
	color: var(--w10k-bg-dark);
}
img {
	max-width: 100%;
	height: auto;
	display: block;
	user-select: none;
	-webkit-user-drag: none;
}
a {
	color: inherit;
	text-decoration: none;
}
p a {
	color: var(--w10k-green);
	font-weight: 400;
  transition: color 0.25s ease;
}
p a:hover {
  	color: var(--w10k-pink);
}
strong {
	font-weight: 600;
}
h1,
h2,
h3,
h4 {
	margin: 0 0 0.5em;
	line-height: 1.2;
}
h1 {
	font-size: 25px;
	font-weight: 600;
	color: var(--w10k-pink)
}
h1:not(.page-title){
	color: transparent;
	background: linear-gradient(
		90deg,
		var(--w10k-orange),
		var(--w10k-pink),
		#ffcc00,
		var(--w10k-lime),
		var(--w10k-green),
		var(--w10k-lime),
		#ffcc00,
		var(--w10k-pink),
		var(--w10k-orange)
	);
	background-size: 1000% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	animation: w10k-text-gradient 65s linear infinite;
}
h2,
h3 {
	font-size: 20px;
	font-weight: 500;
	color: var(--w10k-pink);
}
h4{
	font-size: 18px;
	font-weight: 500;
	color: var(--w10k-orange);
}
h5{
	font-size: 16px;
	font-weight: 600;
	color: var(--w10k-green);
}
p {
  	margin: 0 0 1em;
}
ol {
	padding-inline-start: 10px;
}
label{
	opacity: 0.75;
  transition: opacity 0.25s ease;
}
label:hover{
	opacity: 1;
}
small {
  font-weight: 300;
  opacity: .75;
}
.page-title {
	margin: 0 0 0.25em;
}
.subheading {
  	margin: 0 0 1em;
	font-size: 12px;
}
@media (max-width: 768px) {
  .page-title {
    display: none;
  }
  .subheading {
    text-align: center;
  }
}
button,
.w10k-button,
.w10k-button-ghost,
input[type="submit"] {
  font-family: var(--w10k-font) !important;
  border-radius: var(--w10k-radius-pill) !important;
  padding: calc(0.5 * var(--w10k-padding)) calc(2 * var(--w10k-padding)) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  display: inline-block;
}
.w10k-button,
button[type="submit"],
input[type="submit"] {
  background: var(--w10k-lime) !important;
  color: var(--w10k-bg) !important;
  transition: background-color 0.25s ease, transform 0.25s ease !important;
}
.w10k-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: var(--w10k-green) !important;
  transform: scale(0.99) !important;
}
.w10k-button-ghost {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--w10k-text) !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  transition: border-color 0.25s ease, color 0.25s ease !important;
}
.w10k-button-ghost:hover {
  border-color: var(--w10k-pink) !important;
  color: var(--w10k-pink) !important;
}
input {
	font-family: var(--w10k-font)
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="time"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="url"],
input.input-text,
select,
textarea {
  background: transparent !important;
  background-color: transparent !important;
  color: rgb(255, 255, 255) !important;
  border-top-width: 0px !important;
  border-left-width: 0px !important;
  border-right-width: 0px !important;
  border-radius: 0px !important;
  border-bottom-width: 1px !important;
  border-color: rgb(255, 255, 255) !important;
  transition: border-color 0.25s ease;
}
input[type="text"]:hover,
input[type="text"]:focus,
input[type="password"]:hover,
input[type="password"]:focus,
input[type="number"]:hover,
input[type="number"]:focus,
input[type="date"]:hover,
input[type="date"]:focus,
input[type="datetime"]:hover,
input[type="datetime"]:focus,
input[type="datetime-local"]:hover,
input[type="datetime-local"]:focus,
input[type="time"]:hover,
input[type="time"]:focus,
input[type="month"]:hover,
input[type="month"]:focus,
input[type="week"]:hover,
input[type="week"]:focus,
input[type="email"]:hover,
input[type="email"]:focus,
input[type="search"]:hover,
input[type="search"]:focus,
input[type="tel"]:hover,
input[type="tel"]:focus,
input[type="url"]:hover,
input[type="url"]:focus,
input.input-text:hover,
input.input-text:focus,
select:hover,
select:focus,
textarea:hover,
textarea:focus {
  border-color: var(--w10k-lime) !important;
  outline: none !important;
}
input[type="checkbox"] {
  filter: grayscale(1);
}
.woocommerce form .form-row select {
  padding: 8.5px !important;
}
.w10k-empty-state p {
  color: var(--w10k-text-muted);
  margin-bottom: 1.5em;
}
.w10k-generic-wrap {
  max-width: var(--w10k-page-width);
  margin: 0 auto;
  padding: var(--w10k-gutter);
}
.w10k-404 {
  max-width: 480px;
  margin: 15vh auto;
  text-align: center;
  padding: 0 var(--w10k-gutter);
}
.w10k-404 h1 {
  font-size: 3rem;
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.policy {
  max-width: 690px;
  margin: auto;
  text-align: justify;
}
.policy h1 {
  text-align: center;
  margin-bottom: 1em;
}
.policy h3 {
  margin-top: 1.5em;
  font-size: 20px;
  font-weight: 600;
  border-top: solid 2px var(--w10k-lime);
  color: var(--w10k-orange);
  padding-top: 1em;
  margin-bottom: 20px;
}
.policy p {
  margin-bottom: 10px;
}
.policy ul {
  padding-left: 15px;
}
.policy ul li {
  list-style: disc;
}
body .woocommerce-error, body .woocommerce-info, body .woocommerce-message {
  background: transparent !important;
  background-color: transparent !important;
  text-align: center !important;
  border-radius: var(--w10k-radius-pill) !important;
  border: solid 1px var(--w10k-green) !important;
  color: var(--w10k-green) !important;
  font-size: 11px !important;
  outline: none !important;
}
body .woocommerce-message,
.wc-block-components-notice-banner.is-success {
  color: var(--w10k-green);
}
body .woocommerce-error,
.wc-block-components-notice-banner.is-error {
  color: var(--w10k-orange);
}
body .woocommerce-store-notice {
  color: white;
  background: transparent;
}
body .woocommerce-password-strength {
  background-color: var(--w10k-orange);
  margin-top: 10px;
}
body .woocommerce-password-strength.strong {
  background-color: var(--w10k-green);
  color: var(--w10k-bg);
}
body .woocommerce-password-strength.good {
  background-color: var(--w10k-lime);
  color: var(--w10k-bg);
}
body .woocommerce-error::before,
body .woocommerce-info::before,
body .woocommerce-message::before,
.product-quantity {
  display: none;
}
.wp_google_login {
  margin: 0 auto 2em;
}
.wp_google_login__button {
  display: block;
  width: 100%;
  background: white;
  color: #3d4145;
  border-radius: var(--w10k-radius-pill);
  border-width: 0;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.25s ease;
}
.wp_google_login__button:hover {
  transform: scale(0.99);
}
.wp_google_login__google-icon {
  background: url("/repository/google.svg") no-repeat 50%;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
