/* Account tiles: framed treatment matching the product cards. */
body#my-account .links > a > .link-item,
body.page-customer-account .links > a > .link-item,
body#my-account .links .link-item,
body.page-customer-account .links .link-item {
  border: 2px solid transparent !important;
  border-radius: 16px;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #2f5bff 0%, #25d27a 100%) border-box !important;
  box-shadow: 0 8px 24px rgba(15, 51, 80, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body#my-account .links > a:hover > .link-item,
body#my-account .links > a:focus > .link-item,
body.page-customer-account .links > a:hover > .link-item,
body.page-customer-account .links > a:focus > .link-item {
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #2f5bff 0%, #25d27a 100%) border-box !important;
  box-shadow: 0 10px 28px rgba(15, 51, 80, 0.12);
}
