.woocommerce-message a {
    color: black;
}


/* Container */
.custom-empty-cart {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9; /* light neutral background */
    border-radius: 9px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 500px;
    margin: 40px auto;
}

.empty-cart-title {
    font-size: 28px;
    color: #6C6F70; /* dark gray for title */
    margin-bottom: 16px;
    font-weight: 600;
}

.empty-cart-message {
    font-size: 18px;
    color: #6C6F70; /* gray for the message */
    margin-bottom: 30px;
}

.empty-cart-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none!important;
    color: #fff;
    background-color: #BDD634; /* green button */
    border-radius: 0px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.empty-cart-button:hover {
    background-color: #a7c229; /* slightly darker green on hover */
    transform: translateY(-2px);
}

.custom-cart-form {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.cart-item-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    border-radius: 0px;
    border-bottom: 1px solid #6C6F70;
    gap: 20px;
    padding-bottom: 2em;
}
h3.cart-item-name {
    text-align: justify;
}

.cart-item-meta {
    text-align: justify;
}

/* Thumbnail */
.cart-item-thumbnail img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
}

/* Item details */
.cart-item-details {
    flex: 2;
    min-width: 200px;
}

.cart-item-name a {
    color: #6C6F70;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
}

.cart-item-name a:hover {
    color: #BDD634;
}

/* Mobile adjustments */
@media screen and (max-width: 600px) {
 .cart-actions {

    justify-content: center!important;

}
}

.cart-item-meta div {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 4px;
}

.cart-item-designs ul {
    list-style: none;
    padding-left: 0;
    margin-top: 5px;
}
.cart-item-thumbnail {
    margin: auto;
}
.cart-item-designs a {
    color: #BDD634;
    text-decoration: underline;
}

.cart-item-actions {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 10px;
    min-width: 120px;
    justify-content: space-between;
}

/* Quantity */
.cart-item-quantity input {
    width: 60px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 5px;
}

/* Subtotal */
.cart-item-subtotal {
    font-weight: bold;
    color: #6C6F70;
}

/* Remove button */
.cart-item-remove a {
    font-size: 20px;
    color: #d9534f;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fcecec;
    text-decoration: none;
    transition: all 0.2s;
}

.cart-item-remove a:hover {
    background: #f8d7da;
    color: #b52b2b;
}

/* Cart actions */
.cart-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.update-cart-button,
.go-to-checkout-button {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.update-cart-button {
    background: #6C6F70;
    color: #fff;
}

.update-cart-button:hover {
    background: #555;
}
a.go-to-checkout-button {
    border-radius: 0;
    text-decoration: none;
}
.go-to-checkout-button {
    background: #BDD634;
    color: #fff;
}

.go-to-checkout-button:hover {
    background: #a6c22e;
}
.cart-item-remove-custom a.remove-custom {
    color: #d9534f;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.2s ease;
    background: #BDD634;
}

.cart-item-remove-custom a.remove-custom:hover {
    color: #b52b2b; /* darker red on hover */
}


/* Mobile adjustments */
@media screen and (max-width: 600px) {
    
}
/* === Modern Auth Styles (Woo Login/Register) === */
:root {
  --accent: #BDD634;   /* brand green */
  --ink: #111827;      /* text */
  --muted: #6C6F70;    /* brand gray */
  --bg: #edecef;       /* page bg */
  --card: #ffffff;     /* card bg */
  --line: #e6e8eb;     /* hairline */
  --radius: 16px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 6px rgba(17,24,39,.06);
  --shadow-md: 0 10px 30px rgba(17,24,39,.08);
}

.custom-auth-wrapper {
  /* centered container */
  max-width: 980px;
  margin: clamp(2rem, 4vw, 5rem) auto;
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--ink);
  border-radius: 0;
}

.custom-auth-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.custom-auth-card:hover {
  transform: translateY(-2px);

}

.custom-auth-card.alt {
  /* slight contrast between the two cards */
  background: #edecef;
}

.auth-title {
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 .25rem;
  color: var(--ink);
}

.auth-subtitle {
  margin: 0 0 1.25rem;
  color: #6b7280;
  font-size: .95rem;
}

/* Inputs */
.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="password"] {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 14px;
  font-size: 0.98rem;
  line-height: 1;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.custom-form input::placeholder {
  color: #9aa3af;
}

.custom-form input:hover {
  border-color: #d2d6db;
}

.custom-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 28%, transparent);
}

/* Remember + lost pass row */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  font-size: .92rem;
  color: #4b5563;
  margin: .25rem 0 1rem;
}

.woocommerce-form__label-for-checkbox {
  display: inline-flex !important;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
}

.woocommerce-form__input-checkbox {
  width: 18px; height: 18px;
  border-radius: 6px;
  accent-color: var(--accent);
}

.lost-pass {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.lost-pass:hover { text-decoration: underline; }

/* Buttons */
.btn-submit {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 88%, #000 12%));
  color: #0b1102;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 6px 16px rgba(189,214,52,.35);
}

.btn-submit:hover {
  filter: saturate(110%);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-submit.alt {
  background: #6C6F70;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(108,111,112,.25);
}
.btn-submit.alt:hover { filter: brightness(1.05); }

/* Fine-tune Woo defaults in this context */
.custom-form .form-row { margin: 0 0 14px; }
.woocommerce-form-login .form-row,
.woocommerce-form-register .form-row { padding: 0; }

/* Mobile */
@media (max-width: 820px) {
  .custom-auth-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    background:

  }
}

/* Respect user prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .custom-auth-card, .btn-submit { transition: none; }
}
/* Force WooCommerce buttons to use your brand colors */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #respond input#submit.alt,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
  background: #BDD634 !important;  /* your green */
  color: #0b1102 !important;       /* dark text on green */
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 16px rgba(189, 214, 52, 0.35) !important;
  font-weight: 700 !important;
  padding: 0.9rem 1.5rem !important;
  transition: all 0.2s ease !important;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: #a7bf2e !important; /* darker green on hover */
  color: #fff !important;
}


.woocommerce form .form-row {
    align-items: baseline;
}

.custom-auth-card button {
    color: white;
    border: none;
    font-weight: 700;
}

form.woocommerce-form.woocommerce-form-login.login.custom-form {
    display: flex;
    flex-direction: column;
}
form.woocommerce-form.woocommerce-form-register.register.custom-form {
    flex-direction: column;
    display: flex;
}
form.woocommerce-form.woocommerce-form-register.register.custom-form button:hover {
    background: #6C6F70;
}

/* Lost Password Styling */
.custom-auth-wrapper.single {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 1rem;
}

.custom-auth-wrapper.single .custom-auth-card {
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 20px;
  padding: 2rem;
}

.custom-auth-wrapper.single .auth-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 .5rem;
  color: #111827;
}

.custom-auth-wrapper.single .auth-subtitle {
  font-size: .95rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.custom-auth-wrapper.single .custom-form input {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1px solid #e6e8eb;
  padding: 0 14px;
  font-size: .95rem;
}

.custom-auth-wrapper.single .custom-form input:focus {
  border-color: #BDD634;
  outline: none;
  box-shadow: 0 0 0 3px rgba(189,214,52,.3);
}

.custom-auth-wrapper.single .btn-submit {
  width: 100%;
  margin-top: 1rem;
  background: #BDD634;
  color: white;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 6px 16px rgba(189,214,52,.35);
}

.custom-auth-wrapper.single .btn-submit:hover {
  background: #a7bf2e;
  color: #fff;
}
/* Lost Password Page – Center Horizontally at Top */
.custom-auth-wrapper.single {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: flex-start;   /* stick to the top */
  padding: 4rem 1rem;        /* top margin/breathing space */

}

.custom-auth-wrapper.single .custom-auth-card {
  width: 100%;
  max-width: 1200px;
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 0px;
  padding: 2rem;
}

/* Centered Edit Account Form */
.custom-auth-wrapper.single {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: flex-start;   /* top-aligned */
  padding: 4rem 1rem;        /* spacing from top */
}

.custom-auth-card {
  width: 100%;
  max-width: 600px;
  background: #edecef;
  border-radius: 0px;
  padding: 2.5rem;
}
form.woocommerce-form.woocommerce-form-login.login.custom-form.custom-wrapper-label input {
    background: #ccc;
}
.custom-auth-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333;
}

.woocommerce-Input.input-text,
.woocommerce-Input.input-password {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #dcdfe5;
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color .2s, box-shadow .2s;
}

.woocommerce-Input:focus {
  border-color: #BDD634;
  outline: none;
  box-shadow: 0 0 0 2px rgba(189,214,52,.25);
}

.woocommerce-Button.button {
  background-color: #BDD634 !important;
  color: #0b1102 !important;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 100%;
}

.woocommerce-Button.button:hover {
  background-color: #a4c02e !important;
  transform: translateY(-2px);
}
.custom-auth-wrapper.single {
    margin-top: 0;
}
form.woocommerce-EditAccountForm.edit-account.custom-form button {
    color: white!important;
    border-radius: 0!important;
}
.custom-auth-wrapper.single {
    padding-top: 0;
}
form.woocommerce-ResetPassword.lost_reset_password.custom-form button {
    border-radius: 0;
}

.custom-wrapper-label {
    border: none!important;
}

.custom-register-label {
    border: none!important;
}

.woocommerce-privacy-policy-text {
    display: none;
}

form.woocommerce-form.woocommerce-form-login.login.custom-form.custom-wrapper-label input {
    border-radius: 0;
}

form.woocommerce-form.woocommerce-form-register.register.custom-form.custom-register-label input {
    border-radius: 0;
}

form.woocommerce-form.woocommerce-form-register.register.custom-form.custom-register-label input {
    background: #ccc;
}

button.btn-submit.alt.custom-register-label {
    background: #BDD634;
    border: none;
}

button.btn-submit.custom-login-label {
    background: #BDD634;
    border: none;
}
img.auth-icon {
    width: 30px;
    height: 30px;
}
.login-title-wrapper {
    display: flex;
    justify-content: space-between;
}
.login-title-wrapper h2 {
    margin-top: 0!important;
}
.bottom-wrapper button {
    width: 100%;
}
.bottom-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.custom-auth-card {
    cursor: pointer;
}


