/* Tailwind-like WooCommerce tweaks: buttons, inputs, quantity, tabs */

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button,
.woocommerce .single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    height: 2.5rem; /* h-10 */
    padding: 0 .875rem; /* px-3.5 */
    font-weight: 600; /* font-semibold */
    font-size: .875rem; /* text-sm */
    border-radius: .5rem; /* rounded-lg */
    color: #ffffff !important;
    background-color: #000000 !important;
    border: 1px solid transparent !important;
    transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
    margin-top: 5px;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button:hover,
.woocommerce .single_add_to_cart_button:hover {
    background-color: #111111 !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce .single_add_to_cart_button.button.alt {
    background-color: #000000 !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce .single_add_to_cart_button.button.alt:hover {
    background-color: #1a1a1a !important;
}

/* Primary add to cart button - enhanced */
.woocommerce .cart .single_add_to_cart_button {
    background-image: none;
    background-color: #000000 !important;
    box-shadow: none;
}
.woocommerce .cart .single_add_to_cart_button:hover {
    background-color: #111111 !important;
}
.woocommerce .cart .single_add_to_cart_button:active {
    transform: translateY(1px);
}
.woocommerce .cart .single_add_to_cart_button.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: .85;
}
.woocommerce .cart .single_add_to_cart_button .btn-spinner {
    display: none;
    width: 1rem; height: 1rem;
    border-radius: 9999px;
    border: 2px solid rgba(255,255,255,0.6);
    border-top-color: #fff;
    animation: w-spin .8s linear infinite;
    margin-right: .5rem;
}
.woocommerce .cart .single_add_to_cart_button.btn-loading .btn-spinner {
    display: inline-block;
}
@keyframes w-spin { to { transform: rotate(360deg); } }

/* Quantity */
.woocommerce .cart .quantity {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #e4e4e7 !important; /* zinc-200 */
    border-radius: .5rem !important; /* rounded-lg */
    overflow: hidden;
    background: #fff !important;
}
.woocommerce .quantity .qty {
    width: 5rem !important; /* w-20 */
    height: 2.5rem !important; /* h-10 */
    border: 0 !important;
    padding: 0 .75rem; /* px-3 */
    font-size: .875rem; /* text-sm */
    text-align: center;
}
.woocommerce .quantity .qty:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #000000 !important;
}
.woocommerce .quantity .qty-btn {
    width: 2.5rem !important; /* w-10 */
    height: 2.5rem !important; /* h-10 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f5 !important; /* zinc-100 */
    color: #000000 !important;
    border: 0 !important;
    cursor: pointer;
}
.woocommerce .quantity .qty-btn:hover { background: #e4e4e7 !important; }
.woocommerce .quantity .qty-btn:disabled,
.woocommerce .quantity .qty-btn.disabled { opacity: .5; cursor: not-allowed; }

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    color: #18181b; /* zinc-900 */
}

/* Subscription details next to price */
.woocommerce div.product p.price .subscription-details,
.woocommerce div.product span.price .subscription-details,
.woocommerce .subscription-details {
    margin-left: .25rem;
    font-weight: 500;
    color: #52525b; /* zinc-600 */
}

/* Product meta */
.woocommerce div.product .product_meta {
    margin-top: .75rem;
    font-size: .875rem; /* text-sm */
    color: #52525b; /* zinc-600 */
}
.woocommerce div.product .product_meta a { color: #000000; }
.woocommerce div.product .product_meta a:hover { color: #111111; }

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: .75rem;
    border-bottom: 1px solid #e4e4e7; /* zinc-200 */
    padding-bottom: .5rem;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: inline-flex;
    padding: .375rem .75rem; /* px-3 py-1.5 */
    border-radius: .375rem; /* rounded-md */
    color: #3f3f46; /* zinc-600 */
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    background-color: #f4f4f5; /* zinc-100 */
    color: #18181b; /* zinc-900 */
}

.woocommerce div.product .woocommerce-Tabs-panel {
    padding-top: 1rem; /* pt-4 */
}

/* Gallery */
.woocommerce .woocommerce-product-gallery {
    border: 1px solid #e4e4e7; /* zinc-200 */
    border-radius: .75rem; /* rounded-xl */
    overflow: hidden;
    background-color: #ffffff;
}
.woocommerce .woocommerce-product-gallery__wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

/* Related / Upsell grid */
.woocommerce .related.products ul.products,
.woocommerce .upsells.products ul.products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 768px) {
    .woocommerce .related.products ul.products,
    .woocommerce .upsells.products ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}
.woocommerce .related.products ul.products::before,
.woocommerce .related.products ul.products::after,
.woocommerce .upsells.products ul.products::before,
.woocommerce .upsells.products ul.products::after {
    content: none !important;
    display: none !important;
}
.woocommerce .related.products ul.products.columns-3 li.product,
.woocommerce-page .related.products ul.products.columns-3 li.product,
.woocommerce .upsells.products ul.products.columns-3 li.product,
.woocommerce-page .upsells.products ul.products.columns-3 li.product {
    width: 100% !important;
    margin: 0 !important;
}
.woocommerce ul.products li.product {
    border: 1px solid #e4e4e7;
    border-radius: .75rem;
    overflow: hidden;
    background: #fff;
    padding: .75rem;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    font-weight: 600;
    color: #18181b;
}
.woocommerce ul.products li.product .price { font-weight: 600; }

/* Override Gutenberg wide images inside Woo pages (cart/checkout/product) */
.woocommerce .alignwide,
.woocommerce-cart .alignwide,
.woocommerce-checkout .alignwide,
.single-product .alignwide {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.woocommerce .alignwide img,
.woocommerce-cart .alignwide img,
.woocommerce-checkout .alignwide img,
.single-product .alignwide img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

/* Messages */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    border-radius: .5rem;
}

/* Archive/category layout container */
.woocommerce .site-main,
.woocommerce.archive .site-main,
.woocommerce.tax-product_cat .site-main {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Notices: spacing and avoid duplicates visual clutter */
.woocommerce .woocommerce-notices-wrapper { margin: 0 0 1rem 0; }
.woocommerce .woocommerce-notices-wrapper .woocommerce-message + .woocommerce-message,
.woocommerce .woocommerce-notices-wrapper .woocommerce-info + .woocommerce-info,
.woocommerce .woocommerce-notices-wrapper .woocommerce-error + .woocommerce-error { display: none; }

/* Breadcrumb and header spacing */
.woocommerce .woocommerce-breadcrumb { margin-bottom: .75rem; }
.woocommerce .woocommerce-products-header { margin-bottom: 1rem; }

/* Category/grid listing using CSS Grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 768px) {
    .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
}
@media (min-width: 1024px) {
    .woocommerce ul.products.columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.woocommerce ul.products li.product { width: 100% !important; margin: 0 !important; }
.woocommerce ul.products::before, .woocommerce ul.products::after { content: none !important; display: none !important; }

/* Product card basics */
.woocommerce ul.products li.product {
    border: 1px solid #e4e4e7;
    border-radius: .75rem;
    overflow: hidden;
    background: #fff;
    padding: .75rem;
}
.dark .woocommerce ul.products li.product { background: #292C69; border-color: #27272a; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 1rem; font-weight: 600; color: #18181b; }
.dark .woocommerce ul.products li.product .woocommerce-loop-product__title { color: #e5e7eb; }
.woocommerce ul.products li.product .price { font-weight: 600; }

/* Archive toolbar (result count + orderby) */
.ffx-archive-toolbar {
    flex-wrap: wrap;
}
.ffx-archive-toolbar .woocommerce-result-count {
    color: #3f3f46; /* zinc-600 */
}
.dark .ffx-archive-toolbar .woocommerce-result-count {
    color: #e5e7eb;
}
.ffx-archive-toolbar .woocommerce-ordering select.orderby {
    appearance: none;
    background-color: #ffffff;
    color: #18181b;
    border: 1px solid #e4e4e7;
    border-radius: .5rem;
    padding: .5rem 2.25rem .5rem .75rem; /* room for chevron */
    background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%233f3f46' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m19 9-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .6rem center;
    background-size: 1rem;
}
.dark .ffx-archive-toolbar .woocommerce-ordering select.orderby {
    background-color: #292C69;
    color: #e5e7eb;
    border-color: #3f3f46;
    background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23e5e7eb' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m19 9-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
}

/* Sidebar widgets basic styling */
.woocommerce #sidebar h2,
.woocommerce #sidebar h3 { font-weight: 600; margin-bottom: .5rem; }
.woocommerce #sidebar ul { list-style: none; padding-left: 0; margin: 0; }
.woocommerce #sidebar ul li { padding: .35rem 0; }
.woocommerce #sidebar a { color: #18181b; text-decoration: none; }
.woocommerce #sidebar a:hover { color: #292C69; }
.dark .woocommerce #sidebar a { color: #e5e7eb; }
.dark .woocommerce #sidebar a:hover { color: #e5e5e5; }

/* Fix search icon alignment inside sidebar search */
.woocommerce #sidebar form.relative { position: relative; }
.woocommerce #sidebar form.relative input[type="text"] { padding-right: 2.25rem;width: 100%; }
.woocommerce #sidebar form.relative button[type="submit"] { top: 50%; transform: translateY(-50%); }


.woocommerce-cart .wc-block-cart-item__image {
    overflow: hidden;
}
.woocommerce-cart .wc-block-cart-item__image img {
    width: 100px !important;
    max-width: 80px!important;
}

/* Dark mode adjustments */
.dark .woocommerce,
.dark .woocommerce p,
.dark .woocommerce label,
.dark .woocommerce .form-row,
.dark .woocommerce table th,
.dark .woocommerce table td {
    color: #e5e7eb!important; /* zinc-200 */
}
.dark .woocommerce a { color: #F37436!important; }
.dark .woocommerce a:hover { color: #f78d58!important; }

.dark .woocommerce .input-text,
.dark .woocommerce select,
.dark .woocommerce textarea {
    background-color: #0a0a0a;
    color: #e5e7eb!important;
    border-color: #1f1f1f;
}
.dark .woocommerce .input-text:focus,
.dark .woocommerce select:focus,
.dark .woocommerce textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .15);
    border-color: #1f1f1f;
}

.dark .woocommerce table.shop_table,
.dark .woocommerce table.shop_table th,
.dark .woocommerce table.shop_table td {
    border-color: #27272a!important;
    color: #ffffff!important;
}

.dark .woocommerce-message,
.dark .woocommerce-info,
.dark .woocommerce-error {
    background-color: #111827;
    color: #e5e7eb!important;
    border-color: #374151;
}

.dark .woocommerce .woocommerce-checkout-review-order-table,
.dark .woocommerce .shop_table,
.dark .woocommerce .cart_totals,
.dark .woocommerce .woocommerce-checkout-payment {
    background-color: transparent;
}

.dark .woocommerce .woocommerce-terms-and-conditions,
.dark .woocommerce fieldset {
    border-color: #27272a;
}

/* Woo Blocks (Cart/Checkout blocks) dark mode */
.dark .wc-block-cart,
.dark .wc-block-checkout,
.dark .wc-block-components-sidebar-layout,
.dark .wc-block-components-main,
.dark .wc-block-components-sidebar {
    color: #e5e7eb;
}
.dark .wc-block-cart h1,
.dark .wc-block-cart h2,
.dark .wc-block-cart h3,
.dark .wc-block-checkout h1,
.dark .wc-block-checkout h2,
.dark .wc-block-checkout h3 {
    color: #f3f4f6;
}
.dark .wc-block-components-product-name,
.dark .wc-block-components-totals-item__label,
.dark .wc-block-components-totals-item__value,
.dark .wc-block-formatted-money-amount,
.dark .wc-block-components-product-price__value {
    color: #e5e7eb !important;
}
.dark .wc-block-cart-items th,
.dark .wc-block-cart-items td {
    border-color: #27272a !important;
}
.dark .wc-block-components-quantity-selector__input {
    background-color: #292C69 !important;
    color: #e5e7eb !important;
    border-color: #3f3f46 !important;
}
.dark .wc-block-components-quantity-selector__button {
    background-color: #292C69 !important;
    color: #e5e7eb !important;
}
.dark .wc-block-cart-item__remove-link { color: #93c5fd; }
.dark .wc-block-cart-item__remove-link:hover { color: #bfdbfe; }

/* Cart submit section */
.dark .wc-block-cart__submit-container {
    background-color: #292C69 !important;
}
.dark .wc-block-cart__submit-button.wp-element-button {
    background-color: #292C69 !important;
    color: #ffffff !important;
}
.dark .wc-block-cart__submit-button.wp-element-button:hover {
    background-color: #3036b5 !important;
}



.wh-pricing ul, .product-summary .woocommerce-product-details__short-description ul { margin-top: 1rem; margin-bottom: 0; }
.wh-pricing ul li, .product-summary .woocommerce-product-details__short-description ul li { display:flex; gap:.5rem; align-items:flex-start; }
.wh-pricing ul li::before, .product-summary .woocommerce-product-details__short-description ul li::before {
    content: "✓";
    display: inline-block;
    margin-top: .15rem;
    font-weight: 700;
    color: #818cf8; /* indigo-400 */
}

/* WooCommerce My Account - Login/Register form styling */
.woocommerce .woocommerce-form-login,
.woocommerce .woocommerce-form-register {
  max-width: 36rem; /* ~576px */
  margin: 2rem auto;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(24,24,27,0.08);
  border-radius: 0.75rem; /* 12px */
}
.dark .woocommerce .woocommerce-form-login,
.dark .woocommerce .woocommerce-form-register {
  background: #0a0a0a;
  border-color: rgba(255,255,255,0.12);
}

.woocommerce .woocommerce-form-login h2,
.woocommerce .woocommerce-form-register h2 {
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 1rem 0;
}
.dark .woocommerce .woocommerce-form-login h2,
.dark .woocommerce .woocommerce-form-register h2 {
  color: #fff;
}

.woocommerce .woocommerce-form-login .form-row,
.woocommerce .woocommerce-form-register .form-row {
  margin-bottom: 1rem;
}

.woocommerce .woocommerce-form-login label,
.woocommerce .woocommerce-form-register label {
  display: block;
  font-size: 0.875rem; /* 14px */
  color: #3f3f46; /* zinc-600 */
  margin-bottom: 0.375rem;
}
.dark .woocommerce .woocommerce-form-login label,
.dark .woocommerce .woocommerce-form-register label {
  color: #a1a1aa; /* zinc-400 */
}

.woocommerce .woocommerce-form-login .input-text,
.woocommerce .woocommerce-form-register .input-text,
.woocommerce .woocommerce-form-login input[type="text"],
.woocommerce .woocommerce-form-login input[type="email"],
.woocommerce .woocommerce-form-login input[type="password"],
.woocommerce .woocommerce-form-register input[type="text"],
.woocommerce .woocommerce-form-register input[type="email"],
.woocommerce .woocommerce-form-register input[type="password"] {
  width: 100%;
  padding: 0.625rem 0.75rem; /* 10px 12px */
  border: 1px solid rgba(24,24,27,0.12);
  border-radius: 0.5rem; /* 8px */
  background: #ffffff;
  color: #0a0a0a;
}
.dark .woocommerce .woocommerce-form-login .input-text,
.dark .woocommerce .woocommerce-form-register .input-text,
.dark .woocommerce .woocommerce-form-login input[type="text"],
.dark .woocommerce .woocommerce-form-login input[type="email"],
.dark .woocommerce .woocommerce-form-login input[type="password"],
.dark .woocommerce .woocommerce-form-register input[type="text"],
.dark .woocommerce .woocommerce-form-register input[type="email"],
.dark .woocommerce .woocommerce-form-register input[type="password"] {
  background: #09090b; /* zinc-950 */
  color: #fafafa;
  border-color: rgba(255,255,255,0.12);
}

.woocommerce .woocommerce-form-login .input-text:focus,
.woocommerce .woocommerce-form-register .input-text:focus,
.woocommerce .woocommerce-form-login input:focus,
.woocommerce .woocommerce-form-register input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.35); /* blue focus ring */
  border-color: rgba(59,130,246,0.6);
}

.woocommerce .woocommerce-form-login .password-input {
  display: block;
}
.woocommerce .woocommerce-form-login .password-input .show-password-input {
  opacity: 0.6;
}

/* Remember me + submit row */
.woocommerce .woocommerce-form-login .form-row > .woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.75rem;
}

.woocommerce .woocommerce-form-login .button,
.woocommerce .woocommerce-form-register .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem; /* 10px 16px */
  border-radius: 0.5rem;
  background-color: #09090b; /* zinc-950 */
  color: #fff;
  border: 1px solid rgba(24,24,27,0.12);
  font-weight: 600;
  transition: background-color .2s ease, box-shadow .2s ease;
}
.woocommerce .woocommerce-form-login .button:hover,
.woocommerce .woocommerce-form-register .button:hover {
  background-color: #18181b; /* zinc-900 */
}
.dark .woocommerce .woocommerce-form-login .button,
.dark .woocommerce .woocommerce-form-register .button {
  background-color: #fff;
  color: #09090b;
  border-color: rgba(255,255,255,0.12);
}
.dark .woocommerce .woocommerce-form-login .button:hover,
.dark .woocommerce .woocommerce-form-register .button:hover {
  background-color: #e5e5e5;
}

/* Notices spacing */
.woocommerce .woocommerce-notices-wrapper {
  margin: 0 0 1rem 0;
}

/* Lost password link */
.woocommerce .woocommerce-form-login .lost_password a,
.woocommerce .woocommerce-form-register .lost_password a {
  color: #292C69; /* blue-600 */
}
.dark .woocommerce .woocommerce-form-login .lost_password a,
.dark .woocommerce .woocommerce-form-register .lost_password a {
  color: #60a5fa; /* blue-400 */
}

/* My Account - Navigation */
.woocommerce .woocommerce-MyAccount-navigation {
  margin: 1rem 0 1.5rem 0;
}
.woocommerce .woocommerce-MyAccount-navigation ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .woocommerce .woocommerce-MyAccount-navigation ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.woocommerce .woocommerce-MyAccount-navigation a {
  display: block;
  padding: .5rem .75rem;
  border-radius: .5rem;
  border: 1px solid rgba(24,24,27,.08);
  background: #fff;
  color: #0a0a0a;
  text-decoration: none !important;
  text-align: center;
  font-weight: 600;
}
.woocommerce .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce .woocommerce-MyAccount-navigation a:hover {
  border-color: rgba(59,130,246,.5);
  box-shadow: 0 0 0 3px rgba(59,130,246,.2);
}
.dark .woocommerce .woocommerce-MyAccount-navigation a {
  background: #0a0a0a;
  color: #fafafa;
  border-color: rgba(255,255,255,.12);
}
.dark .woocommerce .woocommerce-MyAccount-navigation li.is-active a,
.dark .woocommerce .woocommerce-MyAccount-navigation a:hover {
  border-color: rgba(96,165,250,.5);
  box-shadow: 0 0 0 3px rgba(96,165,250,.2);
}

/* My Account - Content wrapper */
.woocommerce .woocommerce-MyAccount-content {
  background: #ffffff;
  border: 1px solid rgba(24,24,27,0.08);
  border-radius: .75rem;
  padding: 1rem;
}
@media (min-width: 768px) {
  .woocommerce .woocommerce-MyAccount-content {
    padding: 1.25rem 1.5rem;
  }
}
.dark .woocommerce .woocommerce-MyAccount-content {
  background: #0a0a0a;
  border-color: rgba(255,255,255,.12);
}

/* My Account - Edit account form */
.woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
  max-width: 48rem; /* 768px */
}
.woocommerce .woocommerce-MyAccount-content .form-row {
  margin-bottom: 1rem;
}
.woocommerce .woocommerce-MyAccount-content label {
  display: block;
  font-size: .875rem;
  color: #3f3f46;
  margin-bottom: .375rem;
}
.dark .woocommerce .woocommerce-MyAccount-content label {
  color: #a1a1aa;
}
.woocommerce .woocommerce-MyAccount-content .input-text,
.woocommerce .woocommerce-MyAccount-content input[type="text"],
.woocommerce .woocommerce-MyAccount-content input[type="email"],
.woocommerce .woocommerce-MyAccount-content input[type="password"] {
  width: 100%;
  padding: .625rem .75rem;
  border: 1px solid rgba(24,24,27,.12);
  border-radius: .5rem;
  background: #fff;
  color: #0a0a0a;
}
.dark .woocommerce .woocommerce-MyAccount-content .input-text,
.dark .woocommerce .woocommerce-MyAccount-content input[type="text"],
.dark .woocommerce .woocommerce-MyAccount-content input[type="email"],
.dark .woocommerce .woocommerce-MyAccount-content input[type="password"] {
  background: #09090b;
  color: #fafafa;
  border-color: rgba(255,255,255,.12);
}
.woocommerce .woocommerce-MyAccount-content .input-text:focus,
.woocommerce .woocommerce-MyAccount-content input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(59,130,246,.35);
  border-color: rgba(59,130,246,.6);
}

/* Password show/hide button */
.woocommerce .woocommerce-MyAccount-content .password-input .show-password-input {
  opacity: .6;
}

/* Submit button */
.woocommerce .woocommerce-MyAccount-content .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .625rem 1rem;
  border-radius: .5rem;
  background-color: #09090b;
  color: #fff;
  border: 1px solid rgba(24,24,27,.12);
  font-weight: 600;
  transition: background-color .2s ease, box-shadow .2s ease;
}
.woocommerce .woocommerce-MyAccount-content .button:hover {
  background-color: #18181b;
}
.dark .woocommerce .woocommerce-MyAccount-content .button {
  background-color: #fff;
  color: #09090b;
  border-color: rgba(255,255,255,.12);
}
.dark .woocommerce .woocommerce-MyAccount-content .button:hover {
  background-color: #e5e5e5;
}