/* ==========================================================
   OG Customer Account Preview
   Frontend only — sign in modal, header entry, dashboard
   ========================================================== */

/* ---------- Header customer entry ---------- */

.og-header-sign-in {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #071b3b;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.og-header-customer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.og-header-customer-label {
  line-height: 1;
  white-space: nowrap;
}

.og-header-sign-in:hover,
.og-header-sign-in:focus-visible {
  border-color: #0878ff;
  color: #0878ff;
}

.og-header-account {
  position: relative;
}

.og-header-account-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #071b3b;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.og-header-account-toggle:hover,
.og-header-account-toggle:focus-visible,
.og-header-account-toggle[aria-expanded="true"] {
  border-color: #0878ff;
  color: #0878ff;
}

.og-header-account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 120;
  min-width: 230px;
  padding: 10px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 27, 59, 0.14);
}

.og-header-account-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #071b3b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.og-header-account-menu a:hover,
.og-header-account-menu a:focus-visible {
  background: rgba(8, 120, 255, 0.08);
  color: #0878ff;
}

.og-header-account-logout {
  margin-top: 4px;
  border-top: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 0 0 10px 10px;
}

/* ---------- Sign-in modal ---------- */

body.og-sign-in-modal-open {
  overflow: hidden;
}

.og-sign-in-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 20px;
}

.og-sign-in-modal.is-open {
  display: grid;
}

.og-sign-in-modal[hidden] {
  display: none !important;
}

.og-sign-in-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 59, 0.52);
}

.og-sign-in-modal-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 440px);
  padding: 32px 28px 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(7, 27, 59, 0.22);
}

.og-sign-in-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 120, 255, 0.08);
  color: #071b3b;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.og-sign-in-modal-panel h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.og-sign-in-modal-note {
  margin: 10px 0 0;
  font-size: 13px;
  color: #516176;
}

.og-sign-in-modal-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.og-sign-in-field {
  display: grid;
  gap: 6px;
}

.og-sign-in-field span {
  font-size: 13px;
  font-weight: 800;
  color: #071b3b;
}

.og-sign-in-field input {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 12px;
  font-size: 15px;
}

.og-sign-in-forgot,
.og-sign-in-submit {
  min-height: 46px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.og-sign-in-forgot {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #516176;
}

.og-sign-in-submit {
  border: 0;
  background: #0878ff;
  color: #fff;
  opacity: 0.55;
  cursor: not-allowed;
}

.og-sign-in-modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(219, 230, 243, 0.95);
}

.og-sign-in-modal-links a,
.og-sign-in-modal-links button {
  border: 0;
  background: transparent;
  color: #0878ff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

/* ---------- Checkout welcome back ---------- */

.og-checkout-card--welcome-back .og-checkout-welcome-text {
  margin: 10px 0 0;
  color: #516176;
  line-height: 1.55;
}

.og-checkout-welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.og-checkout-welcome-primary,
.og-checkout-welcome-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.og-checkout-welcome-primary {
  border: 0;
  background: #0878ff;
  color: #fff;
}

.og-checkout-welcome-secondary {
  border: 1px solid rgba(219, 230, 243, 0.95);
  background: #fff;
  color: #071b3b;
}

/* Desktop: keep quick-access + drawer primary out of the top header. */
.og-mobile-quick-access,
.og-mobile-drawer-primary {
  display: none;
}

@media (max-width: 820px) {
  .og-site-nav-wrap.og-mobile-menu-sheet .og-mobile-drawer-primary,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mobile-drawer-primary,
  .og-site-nav-wrap.og-mobile-menu-sheet .og-mobile-quick-access,
  .og-site-nav-wrap.og-mobile-menu-portal .og-mobile-quick-access {
    display: block;
  }
}

/* ---------- Account dashboard preview ---------- */

.og-account-page {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 54px 20px 120px;
}

.og-account-hero {
  padding: 42px 34px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #061936 0%, #07346f 52%, #0878ff 130%);
}

.og-account-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8bc2ff;
}

.og-account-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.04em;
}

.og-account-hero p:last-child {
  margin: 14px 0 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.og-account-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.og-account-nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.og-account-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #071b3b;
  font-weight: 800;
  text-decoration: none;
}

.og-account-nav a:hover,
.og-account-nav a:focus-visible {
  background: rgba(8, 120, 255, 0.08);
  color: #0878ff;
}

.og-account-sections {
  display: grid;
  gap: 18px;
}

.og-account-section {
  padding: 24px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 20px;
  background: #fff;
}

.og-account-section h2 {
  margin: 0;
  font-size: 22px;
}

.og-account-section p {
  margin: 10px 0 0;
  color: #516176;
  line-height: 1.55;
}

.og-account-back-shop {
  margin: 28px 0 0;
}

.og-account-back-shop a {
  color: #0878ff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .og-account-layout {
    grid-template-columns: 1fr;
  }

  .og-account-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================
   WooCommerce My Account — logged-out login + register
   Scoped to body.og-print-theme-wc-login
   ========================================================== */

body.og-print-theme-wc-login .og-site-main {
  padding-top: 34px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at 12% 0%, rgba(8, 120, 255, 0.1), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(7, 27, 59, 0.05), transparent 36%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 48%);
}

body.og-print-theme-wc-login .og-content-wrap,
body.og-print-theme-wc-login .og-woocommerce-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  box-sizing: border-box;
}

body.og-print-theme-wc-login .og-entry-header {
  display: none;
}

body.og-print-theme-wc-login .og-entry-content,
body.og-print-theme-wc-login .woocommerce {
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* ---- Unified auth shell (tabs + heading + form = one card) ---- */

body.og-print-theme-wc-login .og-auth-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 18px 18px 28px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 27, 59, 0.08);
  box-sizing: border-box;
  overflow-x: clip;
}

body.og-print-theme-wc-login .og-auth-tabs,
body.og-print-theme-wc-login .og-account-auth-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 6px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 16px;
  background: #f4f8fd;
  box-shadow: none;
  box-sizing: border-box;
}

body.og-print-theme-wc-login .og-account-auth-tab {
  min-height: 44px;
  min-width: 0;
  padding: 0 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #516176;
  font-size: clamp(0.88rem, 2.8vw, 0.95rem);
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

body.og-print-theme-wc-login .og-account-auth-tab.is-active {
  background: #0878ff;
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 120, 255, 0.28);
}

body.og-print-theme-wc-login .og-auth-heading {
  text-align: center;
  padding: 2px 8px 0;
}

body.og-print-theme-wc-login .og-auth-title {
  margin: 0 0 8px;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #071b3b;
}

body.og-print-theme-wc-login .og-auth-subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #516176;
}

/* Neutralize WooCommerce col2-set / float layout inside OG auth */
body.og-print-theme-wc-login #customer_login.col2-set,
body.og-print-theme-wc-login #customer_login,
body.og-print-theme-wc-login #customer_login.og-auth-panel,
body.og-print-theme-wc-login #customer_login.og-account-auth-root {
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: 580px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box;
}

body.og-print-theme-wc-login #customer_login::before,
body.og-print-theme-wc-login #customer_login::after {
  content: none !important;
  display: none !important;
}

body.og-print-theme-wc-login #customer_login .u-column1,
body.og-print-theme-wc-login #customer_login .u-column2,
body.og-print-theme-wc-login #customer_login .col-1,
body.og-print-theme-wc-login #customer_login .col-2,
body.og-print-theme-wc-login .col2-set .col-1,
body.og-print-theme-wc-login .col2-set .col-2 {
  float: none !important;
  clear: none !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box;
}

body.og-print-theme-wc-login #customer_login .u-column1[hidden],
body.og-print-theme-wc-login #customer_login .u-column2[hidden],
body.og-print-theme-wc-login #customer_login .col-1[hidden],
body.og-print-theme-wc-login #customer_login .col-2[hidden] {
  display: none !important;
}

body.og-print-theme-wc-login #customer_login .col2-set::after,
body.og-print-theme-wc-login #customer_login::after {
  display: none !important;
  content: none !important;
  clear: none !important;
}

.og-account-register-anchor {
  display: block;
  width: 0;
  height: 0;
  scroll-margin-top: calc(var(--og-header-height, 72px) + 24px);
}

body.og-print-theme-wc-login .woocommerce-form-login > h2,
body.og-print-theme-wc-login .woocommerce-form-register > h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #071b3b;
}

body.og-print-theme-wc-login .woocommerce-form-register > h2 {
  color: #0878ff;
}

body.og-print-theme-wc-login .u-column1 .woocommerce-form-login::before,
body.og-print-theme-wc-login .col-1 .woocommerce-form-login::before {
  content: "Welcome back — access your orders and saved details.";
  display: block;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: #516176;
}

body.og-print-theme-wc-login .u-column2 .woocommerce-form-register::before,
body.og-print-theme-wc-login .col-2 .woocommerce-form-register::before {
  content: "New here? Create an account in a minute.";
  display: block;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: #516176;
}

body.og-print-theme-wc-login .woocommerce-form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.og-print-theme-wc-login .woocommerce-form .form-row {
  margin: 0 0 14px;
  padding: 0;
  width: 100%;
  float: none !important;
  clear: both !important;
  box-sizing: border-box;
}

body.og-print-theme-wc-login .woocommerce-form .form-row-first,
body.og-print-theme-wc-login .woocommerce-form .form-row-last {
  float: none !important;
  width: 100% !important;
}

body.og-print-theme-wc-login .woocommerce-form .form-row label {
  display: grid;
  gap: 6px;
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #071b3b;
}

body.og-print-theme-wc-login .woocommerce-form .form-row label .required {
  color: #0878ff;
  text-decoration: none;
}

body.og-print-theme-wc-login .woocommerce-form .input-text,
body.og-print-theme-wc-login .woocommerce-form input[type="text"],
body.og-print-theme-wc-login .woocommerce-form input[type="email"],
body.og-print-theme-wc-login .woocommerce-form input[type="password"],
body.og-print-theme-wc-login .woocommerce-form .password-input {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

body.og-print-theme-wc-login .woocommerce-form .input-text,
body.og-print-theme-wc-login .woocommerce-form input[type="text"],
body.og-print-theme-wc-login .woocommerce-form input[type="email"],
body.og-print-theme-wc-login .woocommerce-form input[type="password"] {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 12px;
  background: #fff;
  color: #071b3b;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: none;
}

body.og-print-theme-wc-login .woocommerce-form .input-text:focus,
body.og-print-theme-wc-login .woocommerce-form input[type="text"]:focus,
body.og-print-theme-wc-login .woocommerce-form input[type="email"]:focus,
body.og-print-theme-wc-login .woocommerce-form input[type="password"]:focus {
  outline: none;
  border-color: #0878ff;
  box-shadow: 0 0 0 3px rgba(8, 120, 255, 0.14);
}

body.og-print-theme-wc-login .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 18px;
  font-size: 14px;
  font-weight: 700;
  color: #516176;
}

body.og-print-theme-wc-login .woocommerce-form-login__rememberme input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0878ff;
}

body.og-print-theme-wc-login .woocommerce-form-login__submit,
body.og-print-theme-wc-login .woocommerce-form-register__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #0878ff;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(8, 120, 255, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-sizing: border-box;
}

body.og-print-theme-wc-login .woocommerce-form-register__submit {
  background: linear-gradient(135deg, #0878ff 0%, #0558c7 100%);
}

body.og-print-theme-wc-login .woocommerce-form-login__submit:hover,
body.og-print-theme-wc-login .woocommerce-form-register__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(8, 120, 255, 0.3);
  color: #fff;
}

body.og-print-theme-wc-login .woocommerce-LostPassword,
body.og-print-theme-wc-login .lost_password {
  margin: 16px 0 0;
  text-align: center;
}

body.og-print-theme-wc-login .woocommerce-LostPassword a,
body.og-print-theme-wc-login .lost_password a {
  color: #0878ff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

body.og-print-theme-wc-login .woocommerce-LostPassword a:hover,
body.og-print-theme-wc-login .lost_password a:hover {
  text-decoration: underline;
}

body.og-print-theme-wc-login .woocommerce-privacy-policy-text {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #516176;
}

@media (min-width: 768px) {
  body.og-print-theme-wc-login .og-auth-shell {
    padding: 22px 28px 32px;
  }

  /* Never restore WC two-column auth grid — keep a single centered panel */
  body.og-print-theme-wc-login #customer_login.col2-set,
  body.og-print-theme-wc-login #customer_login {
    max-width: 580px !important;
    grid-template-columns: none !important;
  }
}

@media (max-width: 480px) {
  body.og-print-theme-wc-login .og-site-main {
    padding-top: 20px;
    padding-bottom: 96px;
  }

  body.og-print-theme-wc-login .og-content-wrap,
  body.og-print-theme-wc-login .og-woocommerce-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  body.og-print-theme-wc-login .og-auth-shell {
    padding: 14px 14px 22px;
    border-radius: 20px;
    gap: 14px;
  }

  body.og-print-theme-wc-login .og-account-auth-tab {
    min-height: 46px;
    font-size: 0.9rem;
  }

  body.og-print-theme-wc-login .og-auth-subtitle {
    font-size: 14px;
  }
}

body.og-print-theme-wc-login .woocommerce:not(:has(#customer_login)) {
  max-width: 480px;
  margin: 0 auto;
}

body.og-print-theme-wc-login .woocommerce:not(:has(#customer_login))::before {
  content: "Sign In";
  display: block;
  margin: 0 0 6px;
  font-size: clamp(28px, 5vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #071b3b;
  text-align: center;
}

body.og-print-theme-wc-login .woocommerce:not(:has(#customer_login))::after {
  content: "Access your orders, artwork, and saved projects.";
  display: block;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
  color: #516176;
  text-align: center;
}

body.og-print-theme-wc-login .woocommerce:not(:has(#customer_login)) > .woocommerce-form-login {
  padding: 28px 24px 24px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 27, 59, 0.08);
}

/* ==========================================================
   WooCommerce Lost / Reset Password
   ========================================================== */

body.og-print-theme-wc-lost-password .og-site-main,
body.og-print-theme-wc-reset-password .og-site-main {
  padding-top: 34px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at 14% 0%, rgba(8, 120, 255, 0.1), transparent 40%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 50%);
}

body.og-print-theme-wc-lost-password .og-content-wrap,
body.og-print-theme-wc-reset-password .og-content-wrap,
body.og-print-theme-wc-lost-password .og-woocommerce-wrap,
body.og-print-theme-wc-reset-password .og-woocommerce-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

body.og-print-theme-wc-lost-password .og-entry-header,
body.og-print-theme-wc-reset-password .og-entry-header {
  display: none;
}

body.og-print-theme-wc-lost-password .woocommerce::before,
body.og-print-theme-wc-reset-password .woocommerce::before {
  display: block;
  margin: 0 0 22px;
  font-size: clamp(28px, 5vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #071b3b;
  text-align: center;
  content: "Reset Your Password";
}

/* Headline only stays outside the card. Never use .woocommerce::after for
 * intro/helper copy — ::after renders after the form/confirmation content. */
body.og-print-theme-wc-lost-password .woocommerce::after,
body.og-print-theme-wc-reset-password .woocommerce::after {
  content: none !important;
  display: none !important;
}

/*
 * A. Forgot Password request — intro INSIDE the form card.
 * Excludes the email-sent confirmation state.
 */
body.og-print-theme-wc-lost-password:not(.og-print-theme-wc-lost-password-sent) .woocommerce-form-lost-password::before,
body.og-print-theme-wc-lost-password:not(.og-print-theme-wc-lost-password-sent) form.woocommerce-ResetPassword::before,
body.og-print-theme-wc-lost-password:not(.og-print-theme-wc-lost-password-sent) form.lost_reset_password::before {
  content: "Enter the email address connected to your Omaha Graphix account. We’ll send you a secure link to create a new password.";
  display: block;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: #516176;
  font-weight: 500;
  text-align: left;
}

/*
 * B. Email-sent confirmation — success notice + WC explanation only.
 * No OG helper/intro chrome.
 */
body.og-print-theme-wc-lost-password-sent .og-account-back-to-sign-in,
body.og-print-theme-wc-lost-password-sent .og-account-reset-helper {
  display: none !important;
}

/*
 * C. Set New Password — intro + helper INSIDE the form card.
 * Intro via ::before (above fields). Helper via ::after (below CTA).
 */
body.og-print-theme-wc-reset-password form.woocommerce-ResetPassword::before,
body.og-print-theme-wc-reset-password form.lost_reset_password::before {
  content: "Enter a new password below.";
  display: block;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: #516176;
  font-weight: 500;
  text-align: left;
}

body.og-print-theme-wc-reset-password form.woocommerce-ResetPassword::after,
body.og-print-theme-wc-reset-password form.lost_reset_password::after {
  content: "Choose a secure new password for your Omaha Graphix account.";
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: #516176;
  font-weight: 500;
}

/* Primary CTA label — visual fallback paired with PHP gettext */
body.og-print-theme-wc-reset-password form.woocommerce-ResetPassword button[type="submit"],
body.og-print-theme-wc-reset-password form.lost_reset_password button[type="submit"] {
  font-size: 0 !important;
  line-height: 0 !important;
}

body.og-print-theme-wc-reset-password form.woocommerce-ResetPassword button[type="submit"]::after,
body.og-print-theme-wc-reset-password form.lost_reset_password button[type="submit"]::after {
  content: "Save New Password";
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
}

body.og-print-theme-wc-lost-password .woocommerce-form-lost-password,
body.og-print-theme-wc-reset-password form.woocommerce-ResetPassword,
body.og-print-theme-wc-reset-password form.lost_reset_password {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 24px 24px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 27, 59, 0.08);
}

body.og-print-theme-wc-lost-password .woocommerce-form .form-row,
body.og-print-theme-wc-reset-password .woocommerce-form .form-row,
body.og-print-theme-wc-lost-password form.lost_reset_password .form-row,
body.og-print-theme-wc-reset-password form.lost_reset_password .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0 0 16px;
  padding: 0;
}

body.og-print-theme-wc-lost-password .woocommerce-form .input-text,
body.og-print-theme-wc-reset-password .woocommerce-form .input-text,
body.og-print-theme-wc-lost-password form.lost_reset_password .input-text,
body.og-print-theme-wc-reset-password form.lost_reset_password .input-text {
  width: 100%;
  max-width: none;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 12px;
  background: #fff;
  color: #071b3b;
  font-size: 15px;
  box-sizing: border-box;
}

body.og-print-theme-wc-lost-password .woocommerce-Button:not(.show-password-input),
body.og-print-theme-wc-reset-password .woocommerce-Button:not(.show-password-input),
body.og-print-theme-wc-lost-password button.button:not(.show-password-input),
body.og-print-theme-wc-reset-password button.button:not(.show-password-input) {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
}

body.og-print-theme-wc-lost-password .og-account-back-to-sign-in,
body.og-print-theme-wc-lost-password .og-account-reset-helper {
  max-width: 520px;
  margin: 16px auto 0;
  text-align: center;
}

body.og-print-theme-wc-lost-password .og-account-back-to-sign-in a {
  color: #0878ff;
  font-weight: 850;
  text-decoration: none;
}

body.og-print-theme-wc-lost-password .og-account-reset-helper {
  color: #516176;
  font-size: 0.9rem;
  line-height: 1.55;
}

body.og-print-theme-wc-lost-password .woocommerce-form-lost-password > p:not(.form-row):not(.og-account-reset-helper),
body.og-print-theme-wc-reset-password form.woocommerce-ResetPassword > p:not(.form-row):not(.og-account-reset-helper),
body.og-print-theme-wc-reset-password form.lost_reset_password > p:not(.form-row):not(.og-account-reset-helper) {
  display: none;
}

body.og-print-theme-wc-lost-password .woocommerce-form-lost-password > p:first-child,
body.og-print-theme-wc-reset-password form.woocommerce-ResetPassword > p:first-child {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #516176;
}

body.og-print-theme-wc-lost-password .woocommerce-form .form-row,
body.og-print-theme-wc-reset-password .woocommerce-form .form-row,
body.og-print-theme-wc-lost-password form.lost_reset_password .form-row,
body.og-print-theme-wc-reset-password form.lost_reset_password .form-row {
  margin: 0 0 14px;
  padding: 0;
}

body.og-print-theme-wc-lost-password .woocommerce-form .form-row label,
body.og-print-theme-wc-reset-password .woocommerce-form .form-row label,
body.og-print-theme-wc-lost-password form.lost_reset_password label,
body.og-print-theme-wc-reset-password form.lost_reset_password label {
  display: grid;
  gap: 6px;
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #071b3b;
}

body.og-print-theme-wc-lost-password .woocommerce-form .input-text,
body.og-print-theme-wc-reset-password .woocommerce-form .input-text,
body.og-print-theme-wc-lost-password form.lost_reset_password .input-text,
body.og-print-theme-wc-reset-password form.lost_reset_password .input-text {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 12px;
  background: #fff;
  color: #071b3b;
  font-size: 15px;
  box-shadow: none;
}

body.og-print-theme-wc-lost-password .woocommerce-form .input-text:focus,
body.og-print-theme-wc-reset-password .woocommerce-form .input-text:focus,
body.og-print-theme-wc-lost-password form.lost_reset_password .input-text:focus,
body.og-print-theme-wc-reset-password form.lost_reset_password .input-text:focus {
  outline: none;
  border-color: #0878ff;
  box-shadow: 0 0 0 3px rgba(8, 120, 255, 0.14);
}

body.og-print-theme-wc-lost-password .woocommerce-Button:not(.show-password-input),
body.og-print-theme-wc-reset-password .woocommerce-Button:not(.show-password-input),
body.og-print-theme-wc-lost-password button.button:not(.show-password-input),
body.og-print-theme-wc-reset-password button.button:not(.show-password-input),
body.og-print-theme-wc-lost-password .woocommerce-form button[type="submit"],
body.og-print-theme-wc-reset-password .woocommerce-form button[type="submit"],
body.og-print-theme-wc-lost-password form.lost_reset_password button[type="submit"],
body.og-print-theme-wc-reset-password form.lost_reset_password button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #0878ff;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(8, 120, 255, 0.24);
}

body.og-print-theme-wc-lost-password .woocommerce-Button:not(.show-password-input):hover,
body.og-print-theme-wc-reset-password .woocommerce-Button:not(.show-password-input):hover,
body.og-print-theme-wc-lost-password button.button:not(.show-password-input):hover,
body.og-print-theme-wc-reset-password button.button:not(.show-password-input):hover,
body.og-print-theme-wc-lost-password .woocommerce-form button[type="submit"]:hover,
body.og-print-theme-wc-reset-password .woocommerce-form button[type="submit"]:hover {
  color: #fff;
}

body.og-print-theme-wc-reset-password .og-account-reset-helper {
  /* Form ::after carries the same visible helper to avoid duplicates. */
  display: none !important;
}

body.og-print-theme-wc-lost-password .woocommerce-form-row--first,
body.og-print-theme-wc-reset-password .woocommerce-form-row--wide {
  margin-bottom: 14px;
}

/* ==========================================================
   Password visibility toggles (icon-only — never OG CTAs)
   ========================================================== */

.woocommerce .password-input,
.woocommerce-page .password-input,
body.og-print-theme-wc-login .password-input,
body.og-print-theme-wc-lost-password .password-input,
body.og-print-theme-wc-reset-password .password-input,
body.og-print-theme-wc-account .password-input,
body.og-print-theme-wc-edit-account .password-input,
.og-checkout-auth .password-input {
  position: relative;
  display: block;
  width: 100%;
}

.woocommerce .password-input input[type="password"],
.woocommerce .password-input input[type="text"],
.woocommerce-page .password-input input[type="password"],
.woocommerce-page .password-input input[type="text"],
body.og-print-theme-wc-login .password-input input,
body.og-print-theme-wc-lost-password .password-input input,
body.og-print-theme-wc-reset-password .password-input input,
body.og-print-theme-wc-account .password-input input,
body.og-print-theme-wc-edit-account .password-input input {
  width: 100%;
  padding-right: 46px !important;
  box-sizing: border-box;
}

.woocommerce .show-password-input,
.woocommerce-page .show-password-input,
.woocommerce button.show-password-input,
.woocommerce button.button.show-password-input,
body.og-print-theme-wc-login .show-password-input,
body.og-print-theme-wc-lost-password .show-password-input,
body.og-print-theme-wc-reset-password .show-password-input,
body.og-print-theme-wc-account .show-password-input,
body.og-print-theme-wc-edit-account .show-password-input,
.og-checkout-auth .show-password-input,
body.og-print-theme-wc-lost-password .woocommerce-form button.show-password-input,
body.og-print-theme-wc-reset-password .woocommerce-form button.show-password-input,
body.og-print-theme-wc-lost-password form.lost_reset_password button.show-password-input,
body.og-print-theme-wc-reset-password form.lost_reset_password button.show-password-input {
  position: absolute !important;
  top: 50% !important;
  right: 8px !important;
  left: auto !important;
  z-index: 3;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 0 !important;
  max-width: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: #516176 !important;
  box-shadow: none !important;
  transform: translateY(-50%) !important;
  cursor: pointer;
  float: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.woocommerce .show-password-input:hover,
.woocommerce .show-password-input:focus-visible,
.woocommerce-page .show-password-input:hover,
.woocommerce-page .show-password-input:focus-visible,
body.og-print-theme-wc-login .show-password-input:hover,
body.og-print-theme-wc-login .show-password-input:focus-visible,
body.og-print-theme-wc-lost-password .show-password-input:hover,
body.og-print-theme-wc-lost-password .show-password-input:focus-visible,
body.og-print-theme-wc-reset-password .show-password-input:hover,
body.og-print-theme-wc-reset-password .show-password-input:focus-visible,
body.og-print-theme-wc-account .show-password-input:hover,
body.og-print-theme-wc-account .show-password-input:focus-visible,
.og-checkout-auth .show-password-input:hover,
.og-checkout-auth .show-password-input:focus-visible {
  background: rgba(8, 120, 255, 0.08) !important;
  color: #0878ff !important;
  outline: none;
}

.woocommerce .show-password-input:active,
.woocommerce-page .show-password-input:active,
.og-checkout-auth .show-password-input:active {
  transform: translateY(-50%) !important;
  box-shadow: none !important;
}

.woocommerce .show-password-input:focus-visible,
.woocommerce-page .show-password-input:focus-visible {
  outline: 2px solid #0878ff !important;
  outline-offset: 1px;
}

.woocommerce .show-password-input::before,
.woocommerce .show-password-input::after,
.woocommerce-page .show-password-input::before,
.woocommerce-page .show-password-input::after {
  /* Keep WooCommerce eye icon glyphs if present; don't invent CTA chrome */
  box-shadow: none !important;
}

.woocommerce .show-password-input svg,
.woocommerce-page .show-password-input svg {
  display: block;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* ==========================================================
   WooCommerce Logged-in My Account
   ========================================================== */

body.og-print-theme-wc-account .og-site-main {
  padding-top: 34px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at 10% 0%, rgba(8, 120, 255, 0.08), transparent 38%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%);
}

body.og-print-theme-wc-account .og-content-wrap,
body.og-print-theme-wc-account .og-woocommerce-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

body.og-print-theme-wc-account .og-entry-header {
  display: none;
}

body.og-print-theme-wc-account .woocommerce {
  margin: 0;
}

body.og-print-theme-wc-account .woocommerce::before {
  content: "My Account";
  display: block;
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #071b3b;
}

body.og-print-theme-wc-account .woocommerce::after {
  content: none !important;
  display: none !important;
}

/* ==========================================================
   Branded My Account dashboard
   ========================================================== */

body.og-print-theme-wc-account .og-account-dashboard {
  display: grid;
  gap: 22px;
}

body.og-print-theme-wc-account .og-account-dashboard-welcome {
  margin: 0;
}

body.og-print-theme-wc-account .og-account-dashboard-title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #071b3b;
}

body.og-print-theme-wc-account .og-account-dashboard-copy {
  margin: 0;
  max-width: 42rem;
  font-size: 15px;
  line-height: 1.55;
  color: #516176;
}

body.og-print-theme-wc-account .og-account-dashboard-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
}

body.og-print-theme-wc-account .og-account-dashboard-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 148px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(8, 120, 255, 0.06) 0%, #fff 52%);
  box-shadow: 0 12px 32px rgba(7, 27, 59, 0.05);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

body.og-print-theme-wc-account .og-account-dashboard-card:hover,
body.og-print-theme-wc-account .og-account-dashboard-card:focus-visible {
  border-color: rgba(8, 120, 255, 0.45);
  box-shadow: 0 16px 40px rgba(8, 120, 255, 0.14);
  transform: translateY(-2px);
  outline: none;
}

body.og-print-theme-wc-account .og-account-dashboard-card:focus-visible {
  outline: 2px solid #0878ff;
  outline-offset: 3px;
}

body.og-print-theme-wc-account .og-account-dashboard-card-title {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #071b3b;
}

body.og-print-theme-wc-account .og-account-dashboard-card-text {
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.5;
  color: #516176;
}

body.og-print-theme-wc-account .og-account-dashboard-card-cta {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 850;
  color: #0878ff;
}

@media (min-width: 720px) {
  body.og-print-theme-wc-account .og-account-dashboard-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  /* Narrow content column beside sticky nav: keep cards readable */
  body.og-print-theme-wc-account .og-account-dashboard-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  body.og-print-theme-wc-account .og-account-dashboard-card {
    min-height: 0;
  }
}

body.og-print-theme-wc-account .woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
  margin: 0 0 24px;
  padding: 16px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 24px;
  background:
    linear-gradient(165deg, rgba(8, 120, 255, 0.06) 0%, #fff 58%);
  box-shadow: 0 14px 36px rgba(7, 27, 59, 0.06);
}

body.og-print-theme-wc-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-navigation li {
  margin: 0;
  padding: 0;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 14px;
  background: #fff;
  color: #071b3b;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(7, 27, 59, 0.04);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-navigation li.is-active a,
body.og-print-theme-wc-account .woocommerce-MyAccount-navigation a:hover,
body.og-print-theme-wc-account .woocommerce-MyAccount-navigation a:focus-visible {
  border-color: #0878ff;
  background: rgba(8, 120, 255, 0.1);
  color: #0878ff;
  transform: translateY(-1px);
}

body.og-print-theme-wc-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a {
  border-color: rgba(180, 35, 24, 0.18);
  color: #b42318;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover,
body.og-print-theme-wc-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:focus-visible {
  border-color: #b42318;
  background: rgba(180, 35, 24, 0.06);
  color: #b42318;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 27, 59, 0.08);
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content h2,
body.og-print-theme-wc-account .woocommerce-MyAccount-content h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.03em;
  color: #071b3b;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content p,
body.og-print-theme-wc-account .woocommerce-MyAccount-content li {
  color: #516176;
  line-height: 1.55;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Addresses,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .u-columns.addresses,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .col2-set.addresses {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  width: 100%;
  margin: 0;
  clear: both;
}

/* Woo clearfixes must not occupy a grid cell (causes zig-zag columns). */
body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Addresses::before,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Addresses::after,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .u-columns::before,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .u-columns::after,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .col2-set::before,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .col2-set::after {
  content: none !important;
  display: none !important;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Address,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .u-column1,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .u-column2,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .col-1,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .col-2 {
  float: none !important;
  clear: none !important;
  display: flex !important;
  flex-direction: column;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 18px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 16px;
  background: rgba(248, 251, 255, 0.92);
  box-sizing: border-box;
  min-width: 0;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Address-title,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Address header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Address-title h3,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Address header h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: #071b3b;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Address address,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-content {
  flex: 1 1 auto;
  margin: 0;
  font-style: normal;
  line-height: 1.55;
  color: #516176;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Address .edit {
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: 800;
  color: #0878ff;
  text-decoration: none;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Address .edit:hover,
body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Address .edit:focus-visible {
  text-decoration: underline;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content .button:not(.show-password-input),
body.og-print-theme-wc-account .woocommerce-MyAccount-content button:not(.show-password-input),
body.og-print-theme-wc-account .woocommerce-MyAccount-content input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #0878ff;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content .button:not(.show-password-input):hover,
body.og-print-theme-wc-account .woocommerce-MyAccount-content button:not(.show-password-input):hover,
body.og-print-theme-wc-account .woocommerce-MyAccount-content input[type="submit"]:hover {
  color: #fff;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 16px;
  overflow: hidden;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content table.shop_table th,
body.og-print-theme-wc-account .woocommerce-MyAccount-content table.shop_table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(219, 230, 243, 0.95);
  text-align: left;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content table.shop_table th {
  background: rgba(8, 120, 255, 0.06);
  color: #071b3b;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-form .form-row label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #071b3b;
}

body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-form .input-text {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 12px;
  font-size: 15px;
}

@media (min-width: 900px) {
  body.og-print-theme-wc-account .woocommerce {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
  }

  body.og-print-theme-wc-account .woocommerce::before,
  body.og-print-theme-wc-account .woocommerce::after {
    grid-column: 1 / -1;
  }

  body.og-print-theme-wc-account .woocommerce-MyAccount-navigation {
    margin: 0;
    position: sticky;
    top: 96px;
  }

  body.og-print-theme-wc-account .woocommerce-MyAccount-navigation ul {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.og-print-theme-wc-account .woocommerce-MyAccount-navigation a {
    justify-content: flex-start;
  }

  body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Addresses,
  body.og-print-theme-wc-account .woocommerce-MyAccount-content .u-columns.addresses,
  body.og-print-theme-wc-account .woocommerce-MyAccount-content .col2-set.addresses {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  body.og-print-theme-wc-account .woocommerce-MyAccount-content .woocommerce-Addresses,
  body.og-print-theme-wc-account .woocommerce-MyAccount-content .u-columns.addresses,
  body.og-print-theme-wc-account .woocommerce-MyAccount-content .col2-set.addresses {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* ==========================================================
   WooCommerce Edit Account — account details form
   ========================================================== */

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
  margin: 0;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .clear {
  display: none;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .form-row,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .woocommerce-form-row {
  margin: 0 0 18px;
  padding: 0;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .form-row:last-child,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .woocommerce-form-row:last-child {
  margin-bottom: 0;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .form-row label,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .woocommerce-form-row label {
  display: grid;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  color: #071b3b;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .form-row label .required,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .woocommerce-form-row label .required {
  color: #0878ff;
  text-decoration: none;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .form-row .description,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .woocommerce-form-row .description,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account #account_display_name_description {
  display: block;
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: #516176;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .input-text,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account input[type="text"],
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account input[type="email"],
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account input[type="password"] {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 12px;
  background: #fff;
  color: #071b3b;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: none;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .input-text:focus,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account input[type="text"]:focus,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account input[type="email"]:focus,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account input[type="password"]:focus {
  outline: none;
  border-color: #0878ff;
  box-shadow: 0 0 0 3px rgba(8, 120, 255, 0.14);
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account fieldset {
  margin: 26px 0 0;
  padding: 22px 20px 20px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: 18px;
  background: rgba(248, 251, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  min-width: 0;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account fieldset legend {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  float: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #071b3b;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account fieldset .form-row,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account fieldset .woocommerce-form-row {
  margin-bottom: 16px;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account fieldset .form-row:last-child,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account fieldset .woocommerce-form-row:last-child {
  margin-bottom: 0;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .password-input,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .woocommerce-input-wrapper {
  position: relative;
  display: block;
  width: 100%;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .password-input input,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .woocommerce-input-wrapper input[type="password"],
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .woocommerce-input-wrapper input[type="text"] {
  padding-right: 46px;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .show-password-input {
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #516176;
  box-shadow: none;
  transform: translateY(-50%);
  cursor: pointer;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .show-password-input:hover,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .show-password-input:focus-visible {
  background: rgba(8, 120, 255, 0.08);
  color: #0878ff;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .show-password-input svg {
  display: block;
  width: 18px;
  height: 18px;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account > p {
  margin: 24px 0 0;
}

body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account > p .woocommerce-Button,
body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account > p button[type="submit"] {
  min-height: 48px;
  padding: 0 24px;
  font-size: 15px;
}

@media (min-width: 768px) {
  body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .woocommerce-form-row--first,
  body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .form-row-first {
    float: left;
    width: calc(50% - 10px);
    margin-right: 20px;
    clear: left;
  }

  body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .woocommerce-form-row--last,
  body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .form-row-last {
    float: left;
    width: calc(50% - 10px);
    clear: none;
  }

  body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .woocommerce-form-row--wide,
  body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account .form-row-wide,
  body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account fieldset,
  body.og-print-theme-wc-edit-account .woocommerce-MyAccount-content form.edit-account > p {
    clear: both;
  }
}

/* ==========================================================
   WooCommerce notices on account pages (OG design)
   ========================================================== */

body.og-print-theme-wc-login .woocommerce-notices-wrapper,
body.og-print-theme-wc-lost-password .woocommerce-notices-wrapper,
body.og-print-theme-wc-reset-password .woocommerce-notices-wrapper,
body.og-print-theme-wc-account .woocommerce-notices-wrapper {
  margin: 0 0 18px;
}

body.og-print-theme-wc-login .woocommerce-message,
body.og-print-theme-wc-login .woocommerce-info,
body.og-print-theme-wc-login .woocommerce-error,
body.og-print-theme-wc-lost-password .woocommerce-message,
body.og-print-theme-wc-lost-password .woocommerce-info,
body.og-print-theme-wc-lost-password .woocommerce-error,
body.og-print-theme-wc-reset-password .woocommerce-message,
body.og-print-theme-wc-reset-password .woocommerce-info,
body.og-print-theme-wc-reset-password .woocommerce-error,
body.og-print-theme-wc-account .woocommerce-message,
body.og-print-theme-wc-account .woocommerce-info,
body.og-print-theme-wc-account .woocommerce-error,
body.og-print-theme-wc-login ul.woocommerce-error,
body.og-print-theme-wc-lost-password ul.woocommerce-error,
body.og-print-theme-wc-reset-password ul.woocommerce-error,
body.og-print-theme-wc-account ul.woocommerce-error {
  list-style: none;
  margin: 0 0 14px;
  padding: 14px 16px 14px 48px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 10px 28px rgba(7, 27, 59, 0.06);
  position: relative;
  background-image: none;
}

body.og-print-theme-wc-login .woocommerce-message::before,
body.og-print-theme-wc-login .woocommerce-info::before,
body.og-print-theme-wc-login .woocommerce-error::before,
body.og-print-theme-wc-lost-password .woocommerce-message::before,
body.og-print-theme-wc-lost-password .woocommerce-info::before,
body.og-print-theme-wc-lost-password .woocommerce-error::before,
body.og-print-theme-wc-reset-password .woocommerce-message::before,
body.og-print-theme-wc-reset-password .woocommerce-info::before,
body.og-print-theme-wc-reset-password .woocommerce-error::before,
body.og-print-theme-wc-account .woocommerce-message::before,
body.og-print-theme-wc-account .woocommerce-info::before,
body.og-print-theme-wc-account .woocommerce-error::before,
body.og-print-theme-wc-login ul.woocommerce-error::before,
body.og-print-theme-wc-lost-password ul.woocommerce-error::before,
body.og-print-theme-wc-reset-password ul.woocommerce-error::before,
body.og-print-theme-wc-account ul.woocommerce-error::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.9;
  mask: none;
  -webkit-mask: none;
  font-family: inherit;
  font-size: 0;
  line-height: 0;
  speak: never;
}

body.og-print-theme-wc-login .woocommerce-error::before,
body.og-print-theme-wc-lost-password .woocommerce-error::before,
body.og-print-theme-wc-reset-password .woocommerce-error::before,
body.og-print-theme-wc-account .woocommerce-error::before,
body.og-print-theme-wc-login ul.woocommerce-error::before,
body.og-print-theme-wc-lost-password ul.woocommerce-error::before,
body.og-print-theme-wc-reset-password ul.woocommerce-error::before,
body.og-print-theme-wc-account ul.woocommerce-error::before {
  background:
    linear-gradient(#fff, #fff) center / 2px 10px no-repeat,
    linear-gradient(#fff, #fff) center 13px / 2px 2px no-repeat,
    #b42318;
}

body.og-print-theme-wc-login .woocommerce-message::before,
body.og-print-theme-wc-lost-password .woocommerce-message::before,
body.og-print-theme-wc-reset-password .woocommerce-message::before,
body.og-print-theme-wc-account .woocommerce-message::before {
  background:
    linear-gradient(#fff, #fff) center / 8px 2px no-repeat,
    #15803d;
}

body.og-print-theme-wc-login .woocommerce-info::before,
body.og-print-theme-wc-lost-password .woocommerce-info::before,
body.og-print-theme-wc-reset-password .woocommerce-info::before,
body.og-print-theme-wc-account .woocommerce-info::before {
  background:
    linear-gradient(#fff, #fff) center / 2px 8px no-repeat,
    linear-gradient(#fff, #fff) center 13px / 2px 2px no-repeat,
    #0878ff;
}

body.og-print-theme-wc-login .woocommerce-error li,
body.og-print-theme-wc-lost-password .woocommerce-error li,
body.og-print-theme-wc-reset-password .woocommerce-error li,
body.og-print-theme-wc-account .woocommerce-error li {
  margin: 0 0 6px;
  padding: 0;
  list-style: none;
}

body.og-print-theme-wc-login .woocommerce-error li::before,
body.og-print-theme-wc-lost-password .woocommerce-error li::before,
body.og-print-theme-wc-reset-password .woocommerce-error li::before,
body.og-print-theme-wc-account .woocommerce-error li::before,
body.og-print-theme-wc-login .woocommerce-error li::marker,
body.og-print-theme-wc-lost-password .woocommerce-error li::marker,
body.og-print-theme-wc-reset-password .woocommerce-error li::marker,
body.og-print-theme-wc-account .woocommerce-error li::marker {
  content: none !important;
  display: none !important;
}

body.og-print-theme-wc-account .og-account-not-you {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.92em;
  font-weight: 700;
  color: #516176;
}

body.og-print-theme-wc-account .og-account-empty-orders-help {
  margin: 0 0 14px;
  color: #516176;
  font-size: 0.95rem;
  line-height: 1.55;
}

body.og-print-theme-wc-login .woocommerce-message,
body.og-print-theme-wc-lost-password .woocommerce-message,
body.og-print-theme-wc-reset-password .woocommerce-message,
body.og-print-theme-wc-account .woocommerce-message {
  border-color: rgba(21, 128, 61, 0.22);
  background: rgba(21, 128, 61, 0.08);
  color: #166534;
}

body.og-print-theme-wc-login .woocommerce-info,
body.og-print-theme-wc-lost-password .woocommerce-info,
body.og-print-theme-wc-reset-password .woocommerce-info,
body.og-print-theme-wc-account .woocommerce-info {
  border-color: rgba(8, 120, 255, 0.24);
  background: rgba(8, 120, 255, 0.08);
  color: #0b3d7a;
}

body.og-print-theme-wc-login .woocommerce-error,
body.og-print-theme-wc-lost-password .woocommerce-error,
body.og-print-theme-wc-reset-password .woocommerce-error,
body.og-print-theme-wc-account .woocommerce-error,
body.og-print-theme-wc-login ul.woocommerce-error,
body.og-print-theme-wc-lost-password ul.woocommerce-error,
body.og-print-theme-wc-reset-password ul.woocommerce-error,
body.og-print-theme-wc-account ul.woocommerce-error {
  border-color: rgba(180, 35, 24, 0.22);
  background: rgba(180, 35, 24, 0.07);
  color: #b42318;
}

body.og-print-theme-wc-login .woocommerce-message a,
body.og-print-theme-wc-login .woocommerce-info a,
body.og-print-theme-wc-login .woocommerce-error a,
body.og-print-theme-wc-lost-password .woocommerce-message a,
body.og-print-theme-wc-lost-password .woocommerce-info a,
body.og-print-theme-wc-lost-password .woocommerce-error a,
body.og-print-theme-wc-reset-password .woocommerce-message a,
body.og-print-theme-wc-reset-password .woocommerce-info a,
body.og-print-theme-wc-reset-password .woocommerce-error a,
body.og-print-theme-wc-account .woocommerce-message a,
body.og-print-theme-wc-account .woocommerce-info a,
body.og-print-theme-wc-account .woocommerce-error a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
}

body.og-print-theme-wc-login .woocommerce-error li,
body.og-print-theme-wc-lost-password .woocommerce-error li,
body.og-print-theme-wc-reset-password .woocommerce-error li,
body.og-print-theme-wc-account .woocommerce-error li {
  margin: 0 0 6px;
  color: inherit;
}

body.og-print-theme-wc-login .woocommerce-error li:last-child,
body.og-print-theme-wc-lost-password .woocommerce-error li:last-child,
body.og-print-theme-wc-reset-password .woocommerce-error li:last-child,
body.og-print-theme-wc-account .woocommerce-error li:last-child {
  margin-bottom: 0;
}

