/* =============================================================
   TradeDock — WooCommerce Styles
   Scoped overrides. Loaded after main style.css.
   ============================================================= */

/* ── Reset WC defaults that conflict ───────────────────────── */
.woocommerce,
.woocommerce-page {
  font-family: 'Inter', system-ui, sans-serif;
}

/* ul.products grid — force override WC defaults */
ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products,
.wc-main ul.products {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
}

/* Reset WC's float-based column widths */
ul.products li.product,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  clear: none !important;
}

@media ( max-width: 1100px ) {
  ul.products,
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media ( max-width: 700px ) {
  ul.products,
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Product card images in WC loop */
.wc-product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lgray);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
  text-decoration: none;
}

.wc-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .wc-product-img img {
  transform: scale(1.04);
}

/* Product title in card */
.product-card h3 {
  margin: 0 0 .5rem;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.product-card h3 a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color .2s;
}

.product-card h3 a:hover { color: var(--teal); }

/* WC price in card */
.wc-price .price,
.wc-price .amount {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
}

.wc-price del .amount { color: var(--gray-3); font-weight: 400; }
.wc-price ins         { text-decoration: none; }

/* ── Toolbar (sort + result count) ─────────────────────────── */
.wc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.woocommerce-ordering select,
.woocommerce-ordering .orderby {
  padding: 8px 36px 8px 14px;
  border: 1.5px solid var(--lgray-dark);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--charcoal);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ABABAB' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  outline: none;
}

.woocommerce-ordering select:focus {
  border-color: var(--teal);
}

/* ── Pagination ─────────────────────────────────────────────── */
.wc-pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.woocommerce-pagination ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: .5rem;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--lgray-dark);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  text-decoration: none;
  transition: all .2s;
}

.woocommerce-pagination ul li a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.woocommerce-pagination ul li span.current {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  font-weight: 600;
}

/* ── WC Main container ──────────────────────────────────────── */
.wc-main { min-width: 0; }

/* ── Single Product Layout ──────────────────────────────────── */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

/* Gallery */
.sp-main-img {
  border-radius: 16px;
  overflow: hidden;
  background: var(--lgray);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: var(--lgray);
}

.sp-thumbs {
  display: flex;
  gap: .75rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}

.sp-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--lgray-dark);
  cursor: pointer;
  transition: border-color .2s;
}

.sp-thumb:hover,
.sp-thumb.active { border-color: var(--teal); outline: 2px solid var(--teal); outline-offset: 1px; }

.sp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Attributes table */
.woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--lgray-dark);
  vertical-align: top;
}
.woocommerce-product-attributes th {
  font-weight: 600;
  color: var(--charcoal);
  width: 35%;
  background: var(--lgray);
  font-family: 'Inter', sans-serif;
}
.woocommerce-product-attributes td {
  color: var(--gray-2);
}
.woocommerce-product-attributes tr:last-child th,
.woocommerce-product-attributes tr:last-child td {
  border-bottom: none;
}

/* Details */
.sp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin: .25rem 0 1rem;
  letter-spacing: -.3px;
}

.sp-short-desc {
  font-size: 15px;
  color: var(--gray-2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.sp-price-box {
  background: var(--white);
  border: 1.5px solid var(--lgray-dark);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.sp-price .price,
.sp-price .amount {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  letter-spacing: -.5px;
}

.sp-members-notice {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 13px;
  color: var(--teal-deeper);
  background: var(--teal-ice);
  border: 1px solid var(--teal-pale);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-weight: 500;
}

.sp-meta {
  border-top: 1px solid var(--lgray-dark);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.sp-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.sp-meta-row span { color: var(--gray-3); }
.sp-meta-row strong { color: var(--charcoal); font-weight: 500; }

/* WC Add to cart on single */
.sp-price-box .woocommerce-variation-add-to-cart,
.sp-price-box form.cart {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 0;
}

.sp-price-box .quantity input {
  width: 80px;
  padding: 10px 12px;
  border: 1.5px solid var(--lgray-dark);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  text-align: center;
}

.sp-price-box .single_add_to_cart_button,
.sp-price-box button[type="submit"] {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 980px;
  padding: 13px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  letter-spacing: -.2px;
}

.sp-price-box .single_add_to_cart_button:hover { background: var(--teal-dark); }

/* Description section */
.sp-description {
  border-top: 1px solid var(--lgray-dark);
  padding-top: 2.5rem;
  margin-bottom: 3rem;
}

.sp-description h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.sp-desc-body {
  font-size: 15px;
  color: var(--gray-2);
  line-height: 1.75;
  max-width: 740px;
}

.sp-desc-body p { margin-bottom: 1rem; }
.sp-desc-body ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.sp-desc-body li { margin-bottom: .4rem; }

/* Related products */
.sp-related {
  border-top: 1px solid var(--lgray-dark);
  padding-top: 2.5rem;
}

.sp-related h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

/* ── WC Notices ─────────────────────────────────────────────── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 10px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.woocommerce-message { background: var(--teal-ice); color: var(--teal-deeper); }
.woocommerce-info    { background: var(--navy-pale); color: var(--navy); }
.woocommerce-error   { background: #FEF2F2; color: #991B1B; }

/* ── Cart / Checkout (basic) ────────────────────────────────── */
.woocommerce-cart table.cart,
.woocommerce-checkout .woocommerce-checkout {
  font-family: 'Inter', sans-serif;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media ( max-width: 900px ) {
  .sp-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wc-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media ( max-width: 640px ) {
  .sp-price-box {
    padding: 1.25rem;
  }
}

/* ── Product image lightbox ─────────────────────────────── */
.sp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.sp-lightbox.open { display: flex; }
.sp-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: none;
}
.sp-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
}
.sp-lightbox-close:hover { opacity: 1; }
.sp-lightbox-prev,
.sp-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10;
}
.sp-lightbox-prev { left: 1.25rem; }
.sp-lightbox-next { right: 1.25rem; }
.sp-lightbox-prev:hover,
.sp-lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* ================================================================
   My Account — Marketing + Registration Page
   ================================================================ */
.ma-page {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 100vh;
  align-items: stretch;
}

/* LEFT — Navy marketing panel */
.ma-panel {
  background: var(--navy);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ma-panel-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.ma-panel-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Benefits list */
.ma-benefits {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ma-benefits li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.ma-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ma-benefits li strong {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.ma-benefits li div {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Trust stats */
.ma-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.ma-trust-stat { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.ma-trust-num  { font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 400; color: #fff; }
.ma-trust-lbl  { font-size: 10px; color: rgba(255,255,255,0.45); text-align: center; letter-spacing: .5px; text-transform: uppercase; }
.ma-trust-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }

/* RIGHT — Forms panel */
.ma-forms {
  padding: 3rem 3.5rem;
  background: var(--lgray);
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

/* Tabs */
.ma-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--lgray-dark);
}

.ma-tab {
  background: none;
  border: none;
  padding: .75rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-2);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}

.ma-tab.active {
  color: var(--navy);
  font-weight: 600;
  border-bottom-color: var(--navy);
}

.ma-tab:hover { color: var(--charcoal); }

/* Form panels */
.ma-form-panel { display: none; }
.ma-form-panel.active { display: block; }

.ma-form-intro {
  font-size: 14px;
  color: var(--gray-2);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* Form fields */
.ma-form .ma-field,
.ma-field {
  margin-bottom: 1.1rem;
}

.ma-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-2);
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
  letter-spacing: .2px;
}

.ma-field .req { color: var(--teal); }

.ma-field input[type=text],
.ma-field input[type=email],
.ma-field input[type=tel],
.ma-field input[type=password],
.ma-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--lgray-dark);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}

.ma-field input:focus,
.ma-field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(70,150,150,.1);
}

.ma-field input::placeholder { color: var(--gray-3); }

.ma-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ABABAB' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.ma-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ma-submit {
  width: 100%;
  justify-content: center;
  margin-top: .5rem;
  font-size: 15px;
}

.ma-legal {
  font-size: 11px;
  color: var(--gray-3);
  text-align: center;
  margin-top: .85rem;
  line-height: 1.6;
}

/* Remember / forgot */
.ma-remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-2);
  margin-bottom: 1.25rem;
}

.ma-remember a {
  color: var(--teal);
  text-decoration: none;
  font-size: 13px;
}

.ma-login-apply {
  text-align: center;
  font-size: 13px;
  color: var(--gray-2);
  margin-top: 1.25rem;
}

.ma-switch-tab {
  background: none;
  border: none;
  color: var(--teal);
  font-size: 13px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
}

.ma-switch-tab:hover { text-decoration: underline; }

/* WC notices on this page */
.ma-forms .woocommerce-error,
.ma-forms .woocommerce-message,
.ma-forms .woocommerce-info {
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 1.25rem;
  padding: .85rem 1rem;
  list-style: none;
}

.ma-forms .woocommerce-error  { background: #FFF0F0; border-left: 3px solid #e55; color: #c33; }
.ma-forms .woocommerce-message { background: var(--teal-ice); border-left: 3px solid var(--teal); color: var(--teal-deeper); }

/* Responsive */
@media (max-width: 900px) {
  .ma-page { grid-template-columns: 1fr; }
  .ma-panel { position: static; height: auto; padding: 2.5rem 1.5rem; }
  .ma-trust { display: none; }
  .ma-forms { padding: 2rem 1.5rem; max-width: 100%; }
  .ma-form-row { grid-template-columns: 1fr; }
}

/* My Account: full-width handled via page.php */

/* ── Shop layout without sidebar ───────────────────────── */
.shop-layout { width: 100%; }

/* ── Category dropdown filter ───────────────────────────── */
.cat-dropdown-wrap { position: relative; display: inline-block; }

.cat-dropdown-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 9px 18px; border-radius: 980px;
  border: 1.5px solid var(--lgray-dark); background: var(--white);
  font-family: "Inter", sans-serif; font-size: 14px; font-weight: 500;
  color: var(--charcoal); cursor: pointer; transition: border-color .2s;
  white-space: nowrap;
}
.cat-dropdown-toggle:hover { border-color: var(--teal); }
.cat-dropdown-toggle svg { transition: transform .2s; flex-shrink: 0; }
.cat-dropdown-toggle.open { border-color: var(--teal); }
.cat-dropdown-toggle.open svg { transform: rotate(180deg); }

.cat-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1.5px solid var(--lgray-dark);
  border-radius: 14px; min-width: 240px; max-height: 340px;
  overflow-y: auto; z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  padding: .5rem 0;
}
.cat-dropdown-menu.open { display: block; }

.cat-dropdown-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 18px; font-size: 14px; color: var(--gray-2);
  text-decoration: none; transition: background .15s, color .15s;
  gap: 1rem;
}
.cat-dropdown-item:hover { background: var(--lgray); color: var(--charcoal); }
.cat-dropdown-item.active { color: var(--teal); font-weight: 600; background: var(--teal-ice); }

.cat-dropdown-count {
  font-size: 12px; color: var(--gray-3); flex-shrink: 0;
}

/* ── Category cards with real product images ─────────────── */
.cat-card-img {
  padding: 0; overflow: hidden; display: flex; flex-direction: column;
}
.cat-card-photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  background-size: cover; background-position: center;
  background-color: var(--lgray); flex-shrink: 0;
  transition: transform .35s ease;
}
.cat-card-img:hover .cat-card-photo { transform: scale(1.04); }
.cat-card-photo--empty { background-color: var(--lgray); }
.cat-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: .5rem; flex: 1;
}
.cat-card-body .cat-card-top {
  display: flex; align-items: center; justify-content: space-between;
}
.cat-card-body h3 { margin: 0; font-size: 17px; }
.cat-card-body .cat-count { font-size: 12px; color: var(--teal-dark); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

/* ── My Account Dashboard ───────────────────────────────── */
.ma-dashboard { background: var(--lgray); min-height: 60vh; }

.ma-dash-header {
  background: var(--navy); padding: 2.5rem 0;
}
.ma-dash-welcome {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.ma-dash-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal-light); margin-bottom: .4rem;
}
.ma-dash-name {
  font-family: "Cormorant Garamond", serif; font-size: clamp(24px, 3vw, 36px);
  font-weight: 400; color: #fff; margin: 0; letter-spacing: -.3px;
}
.ma-status-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 8px 16px; border-radius: 980px;
  font-size: 13px; font-weight: 600; font-family: "Inter", sans-serif;
}
.ma-status-badge.approved { background: rgba(70,150,150,.2); color: var(--teal-light); border: 1px solid rgba(70,150,150,.3); }
.ma-status-badge.pending  { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); }

.ma-dash-body { padding: 2.5rem 0 4rem; }
.ma-dash-grid { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; }

.ma-dash-nav {
  background: var(--white); border-radius: 16px; border: 1px solid var(--lgray-dark);
  overflow: hidden;
}
.ma-dash-nav-item {
  display: block; padding: 13px 20px; font-size: 14px; color: var(--gray-2);
  text-decoration: none; border-bottom: 1px solid var(--lgray);
  transition: background .15s, color .15s; font-weight: 400;
}
.ma-dash-nav-item:last-child { border-bottom: none; }
.ma-dash-nav-item:hover { background: var(--lgray); color: var(--charcoal); }
.ma-dash-nav-item.active { color: var(--teal); font-weight: 600; background: var(--teal-ice); }

.ma-dash-pending-box {
  margin-top: 1rem; background: var(--white); border-radius: 14px;
  border: 1px solid var(--lgray-dark); padding: 1.25rem;
}
.ma-dash-pending-box h4 { font-size: 14px; margin-bottom: .5rem; color: var(--charcoal); }
.ma-dash-pending-box p  { font-size: 13px; color: var(--gray-2); line-height: 1.6; }

.ma-dash-quick-links {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 2rem;
}
.ma-dash-card {
  background: var(--white); border: 1.5px solid var(--lgray-dark); border-radius: 14px;
  padding: 1.5rem 1rem; display: flex; flex-direction: column; align-items: center;
  gap: .75rem; text-decoration: none; color: var(--charcoal);
  transition: border-color .2s; text-align: center; font-size: 13px; font-weight: 500;
}
.ma-dash-card:hover { border-color: var(--teal); color: var(--teal); }
.ma-dash-card svg { stroke: var(--teal); }

.ma-dash-content .woocommerce-MyAccount-content {
  background: var(--white); border-radius: 16px; border: 1px solid var(--lgray-dark);
  padding: 2rem;
}

@media (max-width: 768px) {
  .ma-dash-grid { grid-template-columns: 1fr; }
  .ma-dash-quick-links { grid-template-columns: repeat(2,1fr); }
  .cat-dropdown-menu { min-width: 200px; }
}
